-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (120 loc) · 2.63 KB
/
style.css
File metadata and controls
129 lines (120 loc) · 2.63 KB
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
html, body {
font-family: "Source Sans Pro", Helvetica, sans-serif;
margin: 0px;
height: 100%;
background-color: #f3f3f1;
}
.m-auto {
margin-left: auto;
margin-right: auto;
}
.h-100 {
height: 100%;
}
hr {
border: 0px;
border-top: 1px solid #ccc;
}
.button,
.button:link,
.button:visited,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
background-color: #E76853;
border: 1px solid #E76853;
border-radius: 0.2em;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-block;
font-family: sans-serif;
font-size: 0.9em;
font-weight: 500;
height: 50px;
letter-spacing: 0.05em;
line-height: 50px;
margin-bottom: 0.6em;
padding: 0px 20px 0px 20px;
text-align: center;
text-decoration: none;
vertical-align: top;
white-space: nowrap;
}
.button:hover,
.button:focus,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
background-color: #BA5443;
border-color: #BA5443;
}
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
background-color: #BA5443;
border-color: #BA5443;
}
.site-header .button,
.site-header .button:link,
.site-header .button:visited,
.site-header button,
.site-header input[type="submit"],
.site-header input[type="reset"],
.site-header input[type="button"] {
background-color: #646462;
border: 1px solid #646462;
color: #efefef;
border-radius: 0em;
}
.site-header .button:hover,
.site-header .button:focus,
.site-header button:hover,
.site-header input[type="submit"]:hover,
.site-header input[type="reset"]:hover,
.site-header input[type="button"]:hover,
.site-header button:focus,
.site-header input[type="submit"]:focus,
.site-header input[type="reset"]:focus,
.site-header input[type="button"]:focus,
.site-header .button:active,
.site-header button:active,
.site-header input[type="submit"]:active,
.site-header input[type="reset"]:active,
.site-header input[type="button"]:active {
background-color: #757573;
border-color: #757573;
color: #fff;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
background-color: #fff;
border: 1px solid #aaa;
border-radius: 0.2em;
box-shadow: none;
box-sizing: border-box;
color: #666;
font-family: sans-serif;
font-size: 0.9em;
font-weight: 300;
height: 50px;
line-height: 50px;
margin-bottom: 0.6em;
padding: 2px 15px 0px 15px;
vertical-align: top;
}