-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (99 loc) · 1.75 KB
/
style.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
@font-face {
font-family: 'RaphaelIcons';
src: url('fonts/raphaelicons-webfont.eot');
src: local('☺'), url('fonts/raphaelicons-webfont.woff') format('woff'), url('fonts/raphaelicons-webfont.ttf') format('truetype'), url('fonts/raphaelicons-webfont.svgwebfontKOf9F4sx') format('svg');
font-weight: normal;
font-style: normal;
}
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
height: 100%;
font-family: Georgia, serif;
line-height: 1.5em;
color: #000;
background-color: #999;
}
a {
color: #000;
text-decoration: none;
}
a:hover,
a:focus {
color: #FFF;
text-decoration: none;
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
/* Icon font stuff from http://css-tricks.com/examples/IconFont/ */
[data-icon]:before {
font-family: 'RaphaelIcons';
content: attr(data-icon);
font-size: 2em;
font-weight: normal;
speak: none;
}
.icon-alone {
display: inline-block;
}
.screen-reader-text {
position: absolute;
top: -9999px;
left: -9999px;
}
#main-container {
display: table;
width: 100%;
height: 100%;
}
#main {
display: table-cell;
vertical-align: middle;
text-shadow: 0 0 5px #FFF;
filter: dropshadow(color=#FFF, offx=0, offy=0);
}
ul#links {
text-align: center;
font-size: 2.5em;
font-weight: bold;
line-height: 1.2em;
letter-spacing: -0.05em;
}
ul#links li {
display: inline-block;
margin: 0 0.25em;
}
#background-container {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index: -10;
}
#background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}
@media (min-width: 750px) {
#main {
}
}