-
Notifications
You must be signed in to change notification settings - Fork 13
/
reg.css
155 lines (128 loc) · 2.72 KB
/
reg.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
*{
margin: none;
padding: none;
box-sizing: border-box;
font-family: sans-serif;
-webkit-tap-highlight-color: transparent;
}
body{
display: flex;
height: 100vh;
justify-content: space-between;
flex-direction: column;
background: rgba(0,0,0,0.83)url("images/giphy-downsized-large.gif");
background-size: cover;
background-blend-mode: darken;
}
.container{
width: 100%;
max-width: 650px;
background:#140615b3;
padding: 28px;
border-radius: 10px;
box-shadow:5px 5px 10px 2px rgba(6, 0, 8, 0.66);
margin-left: auto;
margin-right: auto;
margin-top: 20px;
margin-bottom: 40px;
}
.container__form-title{
font-size: 26px;
font-weight: 600;
opacity: 100%;
text-align: center;
padding-bottom: 6px;
color: white;
text-shadow: 2px 2px 2px black;
border-bottom: solid 1px white;
}
.container__main-user-info{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px 0;
}
.container__user-input-box:nth-child(2n){
justify-content: end;
}
.container__user-input-box{
display: flex;
flex-wrap: wrap;
width: 50%;
padding-top: 15px;
}
.container__user-input-box label{
width: 95%;
color: white;
font-size: 20px;
font-weight: 400;
margin: 5px 0;
}
.container__user-input-box input{
height: 40px;
width: 95%;
border-radius: 7px;
outline: none;
border: 1px solid grey;
padding: 0 10px;
}
.container__gender-title{
color: white;
font-size: 24px;
font-weight: 600;
border-bottom: 1px solid white;
}
.container__gender-category{
margin: 15px 0;
color: white;
}
.container__gender-category label{
padding: 0 20px 0 5px;
}
.container__gender-category label,
.container__gender-category input,
.container__btn{
cursor: pointer;
}
.container__btn{
margin-top: 40px;
}
.container__btn {
display: block;
width: 100%;
margin-top: 10px;
font-size: 20px;
padding: 10px;
border: none;
border-radius: 10px;
color: rgb(209, 209,209);
background: #36004d;
}
.container__btn:hover{
background:#030003b3;
color:rgba(252, 249, 249, 0.7);
}
@media(max-width:600px){
.container{
min-width: 280px;
}
.container__user-input-box{
margin-bottom: 12px;
width: 100%;
}
.container__user-input-box:nth-child(2n){
justify-content: space-between;
}
.container__gender-category{
display: flex;
justify-content: space-between;
width: 100%;
}
.container__main-user-info{
max-height: 380px;
overflow: auto;
}
.container__main-user-info::-webkit-scrollbar{
width: 0;
}
}