-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr - Copy.css
167 lines (167 loc) · 3.86 KB
/
r - Copy.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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
display: flex;
height:100vh;
justify-content: center;
align-items: center;
padding:10px;
/* background: linear-gradient(135deg,rgb(52, 246, 253),rgb(77, 74, 252)); */
background-image: url("Online-voting.jpg");
color: white;
}
.container{
max-width: 700px;
width: 100%;
/* background: linear-gradient(135deg,#71b7e6,#9b59b6); */
background-color: black;
padding: 25px 30px;
border: 10px solid black;
border-radius: 65px;
}
.container .title{
margin-top: 20px;
font-size: 25px;
font-weight: 500;
position: relative;
padding-left:30%;
}
.container .title::before{
content: '';
position: absolute;
left:30%;
bottom:0;
height: 3px;
width: 200px;
background: black;
/* background: linear-gradient(135deg,#71b7e6,#9b59b6); */
}
.container form .user-details{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 2px 0px 1px 0px;
}
form .user-details .input-box{
width: calc(100% / 2 - 20px);
}
.user-details .input-box .details{
font-weight: 500;
margin-bottom: 5px;
display: block;
}
.user-details .input-box input{
height:45px;
width: 100%;
outline: none;
border-radius: 5px;
padding-left: 15px;
border: 5px solid red;
font-size: 16px;
border-bottom-width: 2px;
transition: all 0.3s ease;
}
.user-details .input-box input:focus,.user-details .input-box input:valid{
border-color: rgb(40, 212, 40);
}
form .gender-details .gender-title{
font-size: 20px;
font-weight: 500;
}
form .gender-details .category{
width: 80%;
display: flex;
/* background: yellow; */
justify-content: space-around;
margin: 4px 0;
}
.user-details .input-box textarea:focus,.user-details .input-box textarea:valid{
border-color: rgb(40, 212, 40);
}
textarea{
border: 3px solid black;
/* outline: none; */
height:45px;
width: 100%;
outline: none;
border-radius: 5px;
padding-left: 15px;
border: 5px solid red;
font-size: 16px;
border-bottom-width: 2px;
transition: all 0.3s ease;
}
.canditateregistartion .input-b textarea{
border-color: rgb(17, 1, 1);
}
.details,.eduction-details{
font-size: 20px;
font-weight: 500;
}
input{
outline: none;
border-radius: 5px;
border:3px solid black;
}
.button{
font-size: 12px;
padding-left: 40%;
}
.regis{
color:black;
background-color: rgb(54, 224, 54);
box-shadow: 2px 2px white;
}
.res{
color:black;
background-color: crimson;
box-shadow: 2px 2px white;
}
.hide{
display: none;
}
.represent .represent-title{
font-size: 20px;
font-weight: 500;
}
/* now this part is of popup menu ....................................-------------------------------------------------------------
---------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------*/
/* button{
display: block;
margin: 20px auto;
background: rgb(68, 235, 247);
color: white;
border: 5px solid rgb(68, 235, 247);
padding: 6px 10px;
border-radius: 20px;
position:absolute;
} */
.popup-wrapper{
background: rgba(0,0,0,0.5);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.popup{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
width: 30vw;
max-width: 300px;
margin-left: 35%;
margin-top: 10%;
background: white;
border: 3px solid black;
border-radius:20px;
}
.popup a{
color:rgb(50, 207, 235);
text-decoration: none;
}