-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
52 lines (44 loc) · 844 Bytes
/
index.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
body {
background-color: #ffffff;
margin: 0px;
overflow: hidden;
}
canvas {width: 100%; height: 100%;}
#msg {
position: absolute;
font-family: 'Open Sans Condensed', sans-serif;
color: #fff;
text-transform: uppercase;
letter-spacing: .3em;
}
.msg-game {
bottom: 10%;
left: 10%;
padding-right: 10%;
font-size: 4vmin;
}
.msg-fin {
top: 50%;
transform: translateY(-50%);
text-align: center;
font-size: 10vmin;
width: 100%;
}
.menu {
position: absolute;
bottom: 0;
right: 0;
transform: rotate(-90deg) translate(100%, -100%);
transform-origin: right;
font-size: 12px;
line-height: normal;
}
.menu a {
font-family: 'Open Sans', sans-serif;
color: #000;
opacity: .45;
margin: 0 12px;
text-decoration: none;
}
.menu a:hover { opacity: 1;}
.menu a.off { text-decoration: line-through; }