-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (111 loc) · 2.22 KB
/
style.css
File metadata and controls
128 lines (111 loc) · 2.22 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
html {
font-family: "foco light", sans-serif;
font-weight: 100;
font-size: 36px;
}
body {
margin: 0;
}
.home.background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.home.content {
position: absolute;
width: 900px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.home.content .logo {
display: block;
width: 400px;
height: auto;
margin-left: auto;
margin-right: auto;
}
.home.content .blurb {
text-align: center;
}
fieldset {
font-size: 0.7em;
padding: 0.5em;
border-radius: 1em;
border-width: 0;
text-align: center;
font-family: "foco light", sans-serif;
font-weight: 100;
}
label,
input,
.button {
font-family: "foco light", sans-serif;
font-weight: 100;
font-size: inherit;
padding: 13.8px 14.4px;
margin: 0.1em 0.2em;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
background-color: #fff;
border: 0;
}
label,
input {
border: 3px solid #f7931e;
padding: 10.8px 14.4px;
}
input {
margin-right: -6px;
border-radius: 0.6em 0 0 0.6em;
color: black;
}
::-webkit-input-placeholder {
font-family: "foco light", sans-serif;
font-weight: 100;
color: #666;
}
input:-moz-placeholder {
font-family: "foco light", sans-serif;
font-weight: 100;
color: #666;
}
input::-moz-placeholder {
font-family: "foco light", sans-serif;
font-weight: 100;
color: #666;
}
:-ms-input-placeholder {
font-family: "foco light", sans-serif;
font-weight: 100;
color: #666;
}
/* Hack to fix firefox alignment */
.button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner {
border: 0;
padding: 0;
}
input:focus {
outline: none;
}
.button {
margin-left: -6px;
border-radius: 0 0.6em 0.6em 0;
background: #f7931e;
background: -moz-linear-gradient(58deg, #f7931e 20%, #ed1c24 60%);
background: -webkit-linear-gradient(58deg, #f7931e 20%, #ed1c24 60%);
background: -o-linear-gradient(58deg, #f7931e 20%, #ed1c24 60%);
background: -ms-linear-gradient(58deg, #f7931e 20%, #ed1c24 60%);
background: linear-gradient(58deg, #f7931e 20%, #ed1c24 60%);
color: #fff;
}
.button:active,
.button:focus {
outline: none;
}