-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
159 lines (142 loc) · 2.91 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
152
153
154
155
156
157
158
159
@import url(http://fonts.googleapis.com/css?family=Open+Sans:700,600,400);
::-moz-selection { color: white; background: #ee4444; text-shadow: none; }
::selection { color: white; background: #ee4444; text-shadow: none; }
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
@media screen and (max-width: 600px) { html { font-size: 0.875rem; } }
@media screen and (max-width: 900px) { html { font-size: 1rem; } }
@media screen and (min-width: 1200px) { html { font-size: 1.125rem; } }
body {
position: relative;
background: #fff url(/images/background.jpg) repeat-x;
background-size: 60%;
background-attachment: fixed;
font-family: 'Open Sans', 'Helvetica Neue', helvetica, sans-serif;
line-height: 1.5;
color: #333;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
-webkit-font-smoothing: antialiased;
}
article {
max-width: 55rem;
margin: 5rem auto 0rem auto;
padding: 2rem 5rem;
background: #fff;
}
a {
color: #ee4444;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
margin: 2rem 0 1rem 0;
}
h1 {
font-size: 2.250rem;
}
h2 {
font-size: 1.50rem;
}
h3 {
font-size: 1.313rem;
}
h4 {
font-size: 1.125rem;
font-weight: bold;
}
footer {
padding: 2rem 0;
text-align: center;
}
footer ul {
display: inline-block;
margin: 0;
}
footer li {
display: inline-block;
padding: 0 1rem;
font-size: 0.9rem;
}
footer a {
color: #999;
text-decoration: none;
}
#index:before, .logo:before {
content: "";
position: relative;
display: block;
z-index: 2;
width: 250px;
height: 250px;
margin: 5rem auto 2rem auto;
background: url(/images/monstas.jpg);
background-size: 100%;
border: 1em solid #fff;
-webkit-box-shadow: 0px 2px 2px rgba(136, 153, 166, 0.5);
-moz-box-shadow: 0px 2px 2px rgba(136, 153, 166, 0.5);
box-shadow: 0px 2px 2px rgba(136, 153, 166, 0.5);
-moz-border-radius: 1.5rem;
border-radius: 1.5rem;
}
#index article, .logo article {
margin-top: -9rem;
padding-top: 7rem;
}
#index h1 {
font-size: 4rem;
margin: 3rem 0;
text-align: center;
}
.logo h1 {
margin: 2rem 0;
text-align: center;
}
.logo h2 {
text-align: center;
margin: 2rem 0;
}
.paper {
position: relative;
}
.paper:after {
content: "";
position: absolute;
z-index: -1;
top: 10%;
bottom: 0;
left: 10px;
right: 10px;
-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.5);
-moz-box-shadow: 0 0 20px rgba(0,0,0,0.5);
box-shadow: 0 0 20px rgba(0,0,0,0.5);
-moz-border-radius: 100px / 8px;
border-radius: 100px / 8px;
}
#event-meta {
padding: 0.25rem 2rem;
background-color: #f9f9f9;
font-style: italic;
}
#event-meta ul {
margin-left: 0;
padding-left: 0;
}
#event-meta ul li {
margin-left: 0;
padding-left: 0;
list-style-type: none;
}