This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathstyles.css
151 lines (149 loc) · 3.16 KB
/
styles.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
Javascript-video-scrubber Demo
Created by Gary Hepting and the Dev Team at Emerge Interactive
Fork, follow and watch on Github at https://github.com/ghepting/javascript-video-scrubber
Visit Emerge Interctive at http://emergeinteractive.com/
*/
@font-face {
font-family: 'Russo One';
font-style: normal;
font-weight: 400;
src: local('Russo One'), local('RussoOne-Regular'), url('http://themes.googleusercontent.com/static/fonts/russoone/v1/RO6e96EC9m6OLO0tr7J3z7O3LdcAZYWl9Si6vvxL-qU.woff') format('woff');
}
body {
font-family: Helvetica, Arial, sans-serif;
font-size:16px;
line-height:150%;
color:#fff;
text-shadow:3px 3px 3px #000;
min-height:3500px;
}
div.code {
background:rgba(0,0,0,0.65);
padding:.5em 2em;
}
pre {
font-size:12px;
font-family:Courier;
text-shadow:none;
overflow:auto;
}
a, a:link, a:visited {
color:#eee;
text-decoration:none;
border-bottom:1px dotted #eee;
}
a:hover, a:focus, a:active {
color:#fff;
text-decoration:none;
border-bottom:1px dotted #fff;
}
a.button, a.button:link, a.button:visited {
display: inline-block;
margin-right:0.5em;
height: 31px;
padding: 0 0 0 3px;
font-family: Helvetica,arial,freesans,clean,sans-serif;
font-size: 21px;
font-weight: bold;
color: #333;
text-shadow: 1px 1px 0 #fff;
white-space: nowrap;
border: 1px solid #d4d4d4;
border-radius: 6px;
background: #f4f4f4;
background: -moz-linear-gradient(#f4f4f4,#ececec);
background: -webkit-linear-gradient(#f4f4f4,#ececec);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4',endColorstr='#ececec')";
cursor: pointer;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
text-decoration:none;
}
a.button:hover, a.button:focus {
color: #fff;
text-decoration: none;
text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
border-color: #518cc6;
border-bottom-color: #2a65a0;
background: #599bdc;
background: -moz-linear-gradient(#599bdc,#3072b3);
background: -webkit-linear-gradient(#599bdc,#3072b3);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bdc',endColorstr='#3072b3')";
}
a span {
display: block;
height: 31px;
padding: 0 9px 0 7px;
line-height: 31px;
}
h1, h2, h3 {
font-family: 'Russo One', serif;
}
p {
margin-top:2em;
}
div.article {
border-radius:1em;
padding:1em 2em;
background:rgba(0,0,0,0.5);
}
ul.checkmarks {
list-style:none;
padding:1em 2em;
border-radius:1em;
}
ul.checkmarks li {
font-size:14px;
font-weight:bold;
display:block;
padding:1.5em 1.5em 2.5em;
background:transparent url("./images/checkmark.png") 0 1.35em no-repeat;
padding-left: 60px;
border-bottom:3px dotted rgba(255,255,255,0.3);
margin-bottom:1em;
}
ul.checkmarks li:last-child {
border:none;
margin-bottom:0;
padding-bottom:0;
}
img#video {
position:fixed;
z-index:1;
top:0;
right:0;
bottom:0;
left:0;
width:100%;
height:100%;
}
#overlay {
position:fixed;
z-index:2;
top:0;
right:0;
bottom:0;
left:0;
width:100%;
height:100%;
background:url('./images/grid_overlay.png');
}
#content {
position:relative;
z-index:2;
width:66%;
padding:4% 6%;
margin:0 10%;
}
#footer {
text-align:center;
}
#footer h1 a {
border:none;
}
#footer h1 a img {
position:relative;
top:12px;
}