-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
184 lines (154 loc) · 2.63 KB
/
style.css
File metadata and controls
184 lines (154 loc) · 2.63 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
*{
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: #000;
text-align: center;
cursor: default;
padding: 0;
margin: 0;
}
p{
line-height: 1.75em;
}
a {
color: #000;
text-decoration: underline;
}
a:hover{
color: #FF4136;
}
header, main, footer{
padding: 0 1em;
max-width: 800px;
margin: auto;
}
h1, h2{
font-family: Arvo, sans-serif;
}
h1 {
text-transform: uppercase;
font-weight: normal;
color: #62BFAD;
font-size: 25vw;
margin: .2em 0 0;
-webkit-text-stroke: 2px #fff;
text-shadow: #FFBFAD 6px 0 0;
line-height: .9;
word-spacing: 999em; /* Break every word */
}
@media only screen and (min-width: 700px) {
h1 {
font-size: 25vh;
}
}
details {
margin: 1em 0;
}
summary {
padding: 1em 0;
}
p.description {
margin: 1em 0 0;
font-size: 1.4em;
line-height: 1.1em;
}
#poster{
max-width: 100%;
margin: 2em 0 0;
background: #f9f7e8;
box-shadow: 0px 5px 20px rgba(0,0,0,.3);
}
#canvas{
visibility: hidden;
position: absolute;
width: 0;
height: 0;
pointer-events: none;
}
#wallpaper-section{
display: block;
border: 2px solid #000;
overflow: auto;
}
#wallpaper-section p{
margin-left: 1em;
margin-right: 1em;
}
#wallpaper{
max-width: 100%;
max-height: 30vh;
vertical-align: top;
}
#wallpaper-section figcaption{
border-top: 2px solid #000;
}
@media only screen and (min-width: 600px) {
#wallpaper{
float: left;
max-width: 50%;
margin-right: 1em;
border-bottom: 0;
border-right: 2px solid #000;
}
#wallpaper-section figcaption{
border-top: 0;
}
}
#download-wallpaper:after{
content: ' (' attr(data-dimensions) ')';
}
.text {
background: #f9f7e8;
padding: .5em 1em;
text-align: left;
max-width: 30em;
margin: auto;
}
.download {
font-weight: bold;
padding: 1em;
min-width: 50%;
text-decoration: none;
display: inline-block;
margin: 1em auto 0;
border: 2px solid #000;
}
.download:hover,
.download:active{
background-color: #000;
color: #fff;
}
.social a{
display: inline-block;
vertical-align: middle;
padding: 1em;
text-decoration: none;
}
.social a:hover,
.social a:hover svg{
fill: currentColor;
}
.social svg{
fill: currentColor;
vertical-align: middle;
height: 30px;
}
.special-block{
border-top: 3px solid #FF4136;
border-bottom: 3px solid #FF4136;
padding: 1em;
margin: 3em 0;
}
.special-block a{
text-decoration: none;
}
.contributors {
padding: 0;
margin: 0;
}
.contributors li {
display: inline-block;
margin: .5em 1em .5em .5em;
}