-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
86 lines (76 loc) · 1.41 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
86
body,
html {
width: 100%;
height: 100%;
}
body{
padding-top:100px;
}
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
}
body {
color: #999;
background: #fafafa;
}
.form-control {
min-height: 41px;
box-shadow: none;
border-color: #e6e6e6;
}
.form-control:focus {
border-color: #00c1c0;
}
.form-control, .btn {
border-radius: 3px;
}
.signup-form {
width: 425px;
margin: 0 auto;
padding: 30px 0;
}
.signup-form h2 {
color: #333;
font-weight: bold;
margin: 0 0 25px;
}
.signup-form form {
margin-bottom: 15px;
background: #fff;
border: 1px solid #f4f4f4;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
padding: 40px 50px;
}
.signup-form .form-group {
margin-bottom: 20px;
}
.signup-form .btn {
font-size: 16px;
font-weight: bold;
background: #00c1c0;
border: none;
min-width: 140px;
outline: none !important;
}
.signup-form .btn:hover, .signup-form .btn:focus {
background: #00b3b3;
}
.btn-google {
color: #545454;
background-color: #ffffff;
box-shadow: 0 1px 2px 1px #ddd
}
footer {
padding: 10px 0;
background-color: #101010;
color:#9d9d9d;
bottom: 0;
width: 100%;
}