-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.css
115 lines (97 loc) · 1.92 KB
/
registration.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
body{
background-color: #e6e6e6;
}
.header{
margin: 30 0 0 0;
font-size: 28;
}
.box , .loginBox{
margin: 30 0 30 0;
background-color: #fafafa;
color:black;
font-size: 26;
/* font-weight: 500; */
padding: 40 0 40 30;
border-radius: 32px;
-webkit-box-shadow:0 0 2px 1px #bdbdbd;
}
.loginBox{
display: none;
}
.box a , .loginBox a{
font-size: 20;
}
.btn-bar{
margin: 30 0 0 0;
border-radius: 32px;
-webkit-box-shadow:0 0 2px 1px #bdbdbd;
}
.btn-bar a{
background-color: #fafafa;
float: left;
color:black;
padding: 12;
font-size: 18;
font-family: 'Open Sans';
width: 150;
text-align: center;
}
a:hover{
text-decoration: none;
}
.btn-bar a:first-child{
border-top-left-radius: 32px;
border-bottom-left-radius: 32px;
}
.btn-bar a:last-child{
border-top-right-radius: 32px;
border-bottom-right-radius: 32px;
}
.btn-bar .myactive{
color:white;
background-color: #2f9cf1;
}
.inputbox{
margin: 12 0 0 0;
font-size: 18;
width: ;
font-weight: 400;
}
.inputbox span{
margin: 20 0 0 0;
}
.inputbox input[type=text],input[type=password],input[type=date],input[type=time],input[type=number]{
margin: 4 0 20 0;
padding: 10 0 10 15;
width: 300;
outline: none;
border-radius: 10px;
border-left: 2px solid #e0e0e0;
border-right: 2px solid #e0e0e0;
border-top: 2px solid #e0e0e0;
border-bottom: 2px solid #e0e0e0;
}
input[type=text]:focus,input[type=password]:focus,input[type=date]:focus,input[type=time]:focus,input[type=number]:focus{
border:2px solid #2f9cf1;
}
.inputbox input[type=radio]{
text-align: center;
margin: 0 0 25 30;
}
input[type=submit],input[type=reset]{
height: 50;
width: 130;
background-color: #fff;
outline: none;
border:1.5px solid #2f9cf1;
border-radius: 64px;
font-size: 18;
color:#2f9cf1;
}
input[type=submit]:hover,input[type=reset]:hover{
background-color: #2f9cf1;
color:white;
}
.footer input{
margin: 15 10 0 10;
}