-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
62 lines (53 loc) · 1017 Bytes
/
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
html,
body {
min-height: 100%;
}
body {
font-family: sans-serif;
text-align: center;
background: #111 url(https://goo.gl/D1AeUS) center no-repeat;
background-size: cover;
color: #aaa;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.dosbox-container {
margin: 10% auto 0 auto;
width: 640px;
height: 400px;
}
.dosbox-container > .dosbox-overlay {
background: url(./assets/img/overlay.png) center no-repeat;
background-size: 100%;
}
#dosbox:hover .dosbox-start {
opacity: 1;
}
#dosbox .dosbox-start {
background: url(https://static.tumblr.com/98vyz1x/eK4lj7luf/header.png) center no-repeat;
background-size: 150px;
height: 100%;
image-rendering: pixelated;
top: 4% !important;
color: rgba(0, 0, 0, 0);
filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.95));
opacity: 0;
}
.dosbox-powered {
opacity: 0;
}
button {
border: 0;
margin: 10px;
cursor: pointer;
font-weight: 700;
}
p {
font-size: 32px;
}
a {
color: #aaa;
}