-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
85 lines (72 loc) · 1.25 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
@font-face {
font-family: Arcade;
src: url("assets/PressStart2P.ttf") format("truetype");
}
body {
-webkit-font-smoothing: none;
text-align: center;
background-color: white;
font-family: Open Sans;
font-size: 16px;
overflow: hidden;
}
canvas {
border-radius: 0.5em;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
p {
width: 550;
margin: 1em auto;
}
p:first-of-type {
margin-top: 4em;
}
a {
text-decoration: none;
font-weight: bold;
color: inherit;
}
table {
table-layout: fixed;
width: 33%;
transition: opacity 0.5s ease-in-out;
float: left;
margin-bottom: 1em;
}
table td {
line-height: 16px;
}
table td:first-of-type {
text-align: right;
width: 80%;
}
table td:last-of-type {
width: 20%;
}
.right {
text-align: right;
}
#description {
transition: transform 0.5s ease-out;
position: absolute;
top: 100%;
width: 100%;
background-color: white;
height: 100%;
}
#button {
transition: all 0.5s ease-in-out;
font-size: 30px;
width: 50px;
height: 50px;
vertical-align: text-bottom;
position: absolute;
bottom: 10px;
right: 0;
cursor: pointer;
}