-
Notifications
You must be signed in to change notification settings - Fork 4
/
form.css
90 lines (79 loc) · 1.5 KB
/
form.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
body{
font-family: 'Open Sans', sans-serif;
background:#83a1b5;
margin: 0 auto 0 auto;
width:100%;
text-align:center;
margin: 20px 0px 20px 0px;
}
p{
font-size:12px;
text-decoration: none;
color:#ffffff;
}
h1{
font-size:1.5em;
color:#525252;
}
.box{
background:white;
width:300px;
border-radius:6px;
margin: 0 auto 0 auto;
padding:0px 0px 70px 0px;
border: #ffffff 4px solid;
}
.pseudo{
background:#ecf0f1;
border: #ccc 1px solid;
border-bottom: #ccc 2px solid;
padding: 8px;
width:250px;
color:#AAAAAA;
margin-top:10px;
font-size:1em;
border-radius:4px;
}
.password{
border-radius:4px;
background:#ecf0f1;
border: #ccc 1px solid;
padding: 8px;
width:250px;
font-size:1em;
}
.btn{
background:#2ecc71;
width:125px;
padding-top:5px;
padding-bottom:5px;
color:white;
border-radius:4px;
border: #27ae60 1px solid;
margin-top:20px;
margin-bottom:20px;
float:left;
margin-left:16px;
font-weight:800;
font-size:0.8em;
}
.btn:hover{
background:#2CC06B;
}
#btn2{
float:left;
background:#3498db;
width:125px; padding-top:5px;
padding-bottom:5px;
color:white;
border-radius:4px;
border: #2980b9 1px solid;
margin-top:20px;
margin-bottom:20px;
margin-left:10px;
font-weight:800;
font-size:0.8em;
}
#btn2:hover{
background:#3594D2;
}