-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (48 loc) · 935 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
html {
animation: fade-in 2s;
background: rgb(233, 222, 255);
box-shadow: inset 0 0 128px rgb(33, 16, 33);
color: rgb(33, 16, 33);
font-family: Arial, Helvetica, sans-serif;
font-size: 16pt;
min-height: 100%;
min-width: 100%;
text-align: center;
vertical-align: middle;
}
body {
margin-top: 128px;
}
a {
color: rgb(17,8,136);
}
button {
-webkit-appearance: none;
background: rgb(33, 16, 33);
color: rgb(233, 222, 255);
font-size: 75%;
height: 32px;
}
.information {
color: rgb(133,119,144);
font-size: 75%;
}
#content {
font-size: 150%;
}
#result {
display: block;
font-size: 200%;
}
#reroll {
font-size: 100%;
height: 64px;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}