-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
168 lines (144 loc) · 3.22 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
.container{
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: auto;
margin: 0;
padding: 0;
}
.registration {
padding: 1em 2em;
margin: 0 auto;
background-color: #f3f3f3;
box-shadow: 0 0 4px #98949482;
border-radius: 10px;
width: 90vw;
display: grid;
}
.form-registration {
text-align: center;
margin-top: 2em;
}
.form-registration input {
background: none;
padding: 0.2em 1em 0.2em 0.5em;
width: 90%;
border: none;
border-bottom: 2px solid #8080804d;
margin: 2em 0;
}
.form-registration input:active,
.form-registration input:focus,
.form-registration textarea:active,
.form-registration textarea:focus {
outline: none;
border-bottom: 2px solid #6379f6;
}
.form-registration select {
padding: 0.5em 0.5em 0.5em 1em;
margin-left: 0.7em;
width: 100%;
border-radius: 5px;
}
.form-registration textarea {
margin-left: 3%;
background: no-repeat;
border: none;
border-bottom: 2px solid #8080804d;
}
.form-registration input[type=submit] {
background-color: #6379f6;
padding: 1em;
border-radius: 10px;
color: white;
width: 50%;
}
.registration h1 {
text-align: center;
}
.detail {
font-size: 1.3em;
margin-left: 0.5em;
}
.detail p {
margin: 0;
}
.detail p span {
font-weight: bold;
}
.form-registration input[type="text"], .form-registration input[type=tel], .form-registration input[type=email] {
font-size: 1.2em;
}
@media only screen and (min-width:756px) {
.container{
width:95vw;
margin: 1em;
}
.registration {
padding: 1em 2em;
margin: 0 auto;
background-color: #f3f3f3;
box-shadow: 0 0 4px #98949482;
border-radius: 10px;
width: 50vw;
display: block;
height: auto;
}
.form-registration {
text-align: center;
margin-top: 2em;
}
.form-registration input {
background: none;
padding: 0.2em 1em 0.2em 0.5em;
width: 90%;
border: none;
border-bottom: 2px solid #8080804d;
margin: 2em 1em;
}
.form-registration input:active,
.form-registration input:focus,
.form-registration textarea:active,
.form-registration textarea:focus {
outline: none;
border-bottom: 2px solid #6379f6;
}
.form-registration select {
padding: 0.5em 0.5em 0.5em 1em;
margin-left: 0.7em;
width: 100%;
border-radius: 5px;
}
.form-registration textarea {
margin-left: 3%;
background: no-repeat;
border: none;
border-bottom: 2px solid #8080804d;
}
.form-registration input[type=submit] {
background-color: #6379f6;
padding: 1em;
border-radius: 10px;
color: white;
width: 50%;
}
.container h1 {
text-align: center;
}
.detail {
font-size: 1.3em;
margin-left: 2.5em;
}
.detail p {
margin: 0;
}
.detail p span {
font-weight: bold;
}
.form-registration input[type="text"],
.form-registration input[type=tel],
.form-registration input[type=email] {
font-size: 1.2em;
}
}