-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascii.css
67 lines (57 loc) · 1.08 KB
/
ascii.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
body {
margin: 0;
padding: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
background-color: #ffffff;
color: #030303;
font-size: 14px;
line-height: 5px;
letter-spacing: 1px;
background-color: #ffffff;
}
canvas {
display: block;
}
button {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 14px;
background: none;
border-style: solid;
border-radius: 10px;
color: #030303;
text-align: center;
}
#play {
width: 50px;
}
#popup {
position: absolute;
top: 55px;
left: 15px;
background-color: white;
padding: 10px;
border-radius: 5px;
height: 450px;
width: 710px;
display: none;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
line-height: 15px;
padding-left: 50px;
}
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity:1 ;}
}
@keyframes fadeOut {
from {opacity: 1;}
to {opacity: 0;}
}