-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdscstyle.css
140 lines (123 loc) · 2.12 KB
/
dscstyle.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
@font-face
{
font-family: minecraft;
src: url('minecraft.otf') format('opentype');
}
*
{
font-family: minecraft, monospace;
text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
}
@keyframes bg-scroll
{
0%
{
background-position-x: 0px;
}
100%
{
background-position-x: 64px;
}
}
html, body
{
padding: 0px;
margin: 0px;
height: 100%;
width: 100%;
}
body
{
background-image: url('dirt64dark.png');
color: white;
animation: bg-scroll 0.5s linear infinite;
}
#container
{
display: flex;
flex-flow: column;
min-height: 100%;
width: 80%;
margin: auto;
box-shadow: 0px 0px 20px black;
background-image: url('dirt64.png');
padding-left: 26px;
padding-right: 26px;
font-size: 22px;
padding-bottom: 20px;
}
#heading
{
text-align: center;
font-size: 48px;
margin-bottom: 0px;
}
.subheading
{
margin-left: 20px;
margin-top: 0px;
margin-bottom: 0px;
}
a, a:visited
{
text-decoration: underline;
color: lightblue;
}
a:hover
{
text-decoration: underline;
color: pink;
}
#downloads
{
border: 4px solid white;
background-image: url('dirt64dark.png');
padding: 10px;
overflow-y: scroll;
margin-bottom: 16px;
max-height: 360px;
background-attachment: local;
}
.downloads-separator
{
border: 1px solid white;
}
.screenshot
{
box-shadow: 0px 0px 25px black;
min-width: 256px;
max-width: 256px;
min-height: 192px;
max-height: 192px;
}
#screenshots
{
margin-top: 10px;
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}
#footer
{
margin-top: 70px;
font-size: small;
text-align: center;
}
@media only screen and (max-width: 480px)
{
.subheading
{
text-align: center;
margin: 0px;
}
#screenshots
{
display: flex;
flex-direction: column;
}
.screenshot
{
margin: 0 auto;
margin-bottom: 15px;
}
}