-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (129 loc) · 2.58 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body {
margin: 0;
padding: 3em 0;
width: 100%;
background-color: #062863;
background-image: url(img/image1.png), url(img/image2.png), url(img/image3.png), url(img/image4.png);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: 15%, 15%, 15%, 15%;
background-position: left -1% top -14%, right -8.5% top -1%, left -5% bottom -10%, right -6.3% bottom -5%;
font-family: serif;
}
.logo {
text-align: center;
margin-bottom: 3em;
}
form {
background-color: white;
padding: 2.5rem 2.5rem 3rem;
margin: auto;
width: 23rem;
height: 85%;
border-radius: 22px 22px 22px 0;
}
form h1 {
font-family: sans-serif;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.2em;
color: #083e9e;
text-align: center;
margin-top: 0.5rem;
margin-bottom: 0.3rem;
}
form p {
color: #4a5568;
text-align: center;
margin-top: 0;
margin-bottom: 0
}
.form-content {
padding: 2rem 0 0;
}
.form-content div {
margin-bottom: 2em;
margin-top: 0.5rem;
}
input, select {
margin: 9px auto auto;
width: 90%;
padding: 1.14em;
outline: none;
border: none;
border-radius: 4px;
background-color: #edf2f7;
font-size: 100%;
}
label {
color: #4a5568;
font-size: 0.75rem;
font-weight: bold;
margin-bottom: 0.25rem;
font-family: sans-serif;
}
select {
width: 100%;
border-radius: 0.5rem;
}
button {
background-color: rgb(8, 62, 158);
color: white;
border: none;
width: 100%;
padding: 1.6rem 1.6rem 1.2rem;
border-radius: 12px 12px 12px 0;
margin-bottom: 0;
font-size: 89%;
font-weight: bold;
}
.footer {
text-align: center;
margin-top: 2em;
font-size: 100%;
}
.footer a {
<<<<<<< HEAD
text-decoration: none;
color: white;
}
@media(max-width:400px) {
form {
width: 86%;
padding: 0.5rem 0.7rem;
}
h1 {
font-size: 2rem;
font-weight: bold;
}
input {
width: 87%;
}
}
=======
text-decoration: none;
color: white;
}
@media(max-width:620px){
body {
margin: 0;
padding: 3em 1.5em;
width:100%;
background-color: #062863;
background-image: url(img/image1.png), url(img/image2.png), url(img/image3.png), url(img/image4.png);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: 15%, 15%, 15%, 15%;
background-position: left 1% top 2%, right -8.5% top -1%, left -5% bottom -10%, right -6.3% bottom -5%;
font-family: serif;
}
form {
background-color: white;
padding: 2.5rem 2.5rem 3rem;
margin: auto;
width: 18rem;
height: 85%;
border-radius: 22px 22px 22px 0;
}
}
>>>>>>> cc287f7a49918d6e7c0ca2501d3088cb76be2a85