forked from willwhite/longneck
-
Notifications
You must be signed in to change notification settings - Fork 3
/
site.css
116 lines (95 loc) · 3.5 KB
/
site.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
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
---
---
{% include css/bootstrap.min.css %}
.label, .btn,
h1, h2, h3, h4, h5, h6 {
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
letter-spacing: 0.05em;
font-weight: 400;
}
body, p {
font-size: 14px;
line-height: 22px;
color: #333;
font-family: 'Karla', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 400;
}
h1 { font-size: 38px; }
h2 { font-size: 28px; }
h3 { font-size: 18px; line-height: 26px; }
h4 { font-size: 16px; line-height: 30px; }
a {
color:rgba(255,120,96,1);
}
a:hover {
color: #FF3A1C;
}
body { background:#eee url(assets/background.png); }
h1, h2 { color: #222; }
.main {
background-color: #fcfcff;
padding: 20px 20px;
margin-bottom: 20px;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
border-radius: 0 0 4px 4px;
padding-top: 200px;
padding-bottom: 200px;
text-align: center;
}
.main {
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #f0f0f0 80%, #f3f3f3 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(80%,#f0f0f0), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#f0f0f0 80%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#f0f0f0 80%,#f3f3f3 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f0f0f0 80%,#f3f3f3 100%); /* IE10+ */
background: linear-gradient(top, #ffffff 0%,#f0f0f0 80%,#f3f3f3 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); /* IE6-9 */
}
header h1 {
font-family: 'Audiowide', cursive;
font-size: 30px;
text-align: center;
padding-top: 20px;
background: url(/assets/masthead.png) center bottom no-repeat;
padding-top: 30px;
height: 90px;
max-width: 600px;
margin: 0 auto 0 auto;
}
header h1 a {
color: rgba(255,120,96,1);
letter-spacing: 0.02em;
display: block;
margin-top : 40px;
}
header h1 a:hover {
color: #FF3A1C;
text-decoration: none;
}
@media (min-width: 500px) {
header h1 {
font-size: 40px;
line-height: 48px;
padding-top: 20px;
}
}
header {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
header {
position: relative;
z-index: 20;
background: rgb(255,200,145); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,200,145,1) 0%, rgba(255,173,96,1) 44%, rgba(255,120,96,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,200,145,1)), color-stop(44%,rgba(255,173,96,1)), color-stop(100%,rgba(255,120,96,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,200,145,1) 0%,rgba(255,173,96,1) 44%,rgba(255,120,96,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,200,145,1) 0%,rgba(255,173,96,1) 44%,rgba(255,120,96,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,200,145,1) 0%,rgba(255,173,96,1) 44%,rgba(255,120,96,1) 100%); /* IE10+ */
background: linear-gradient(top, rgba(255,200,145,1) 0%,rgba(255,173,96,1) 44%,rgba(255,120,96,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc891', endColorstr='#ff7860',GradientType=0 ); /* IE6-9 */
}