-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
85 lines (84 loc) · 1.57 KB
/
signup.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
body{
color: #999;
background-image:url(army.jpg);
font-family: 'Roboto' , sans-serif;
background-size: cover;
}
.form_control{
width: 100%;
min-height: 41px;
box-shadow: none;
border-color: #e1e1e1;
}
.form_control:focus{
border-color: #00cb82;
}
.form_control, .btn{
border-radius: 3px;
}
.form_header{
margin: -30px -30px 20px;
padding: 30px 30px 10px;
text-align: center;
background: #f68613;
border-bottom: 1px solid #eee;
color: #fff;
}
.form_header h2{
font-size: 34px;
font-weight: bold;
margin: 0 0 10px;
font-family: 'Pacifico', sans-serif;
}
.form-header p{
margin: 20px 0 15px;
font-size: 17px;
line-height: normal;
font-family: 'Courgette' , sans-serif;
}
.signup_form{
width: 390px;
margin: auto;
margin-top: 100px;
padding: 30px 0;
}
.signup_form form{
color: #999;
border-radius: 3px;
margin-bottom: 15px;
background: #f0f0f0;
box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
padding: 30px;
}
.signup_form .form_group{
margin-bottom: 20px;
}
.signup_form label{
font-weight: normal;
font-size: 13px;
}
.signup_form input[type="chechkbox"]
{
margin-top: 2px;
vertical-align:middle;
}
.signup_form .btn{
font-size: 16px;
font-weight: bold;
background:#00cb82;
border: none;
min-width: 200px;
}
.signup_form .btn:hover, .signup_form .btn:focus{
background: #00b073 !important;
outline:none;
}
.signup_form a{
color: #00cb82;
}
.signup_form a:hover{
text-decoration: underline;
}
.checkbox{
margin-left:26px;
}