-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdreamjoy_style.css
68 lines (59 loc) · 1.04 KB
/
dreamjoy_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
63
64
65
66
67
68
body {
padding: 0;
margin: 0;
background-color: black;
color: lime;
}
.container {
height: 99vh;
width: 99vw;
display: flex;
justify-content: center;
align-items: center;
font-family: monospace;
font-size: 0.8em;
text-align: center;
}
h1 {
font-weight: 200;
}
.container span {
color: red;
}
.container span::after {
content: '|';
animation-name: blinking;
animation-duration: 0.71s;
animation-iteration-count: infinite;
}
@keyframes blinking {
from {
color: red;
}
to {
color: lime;
}
}
.controls {
text-align: center;
margin-top: 20px;
}
.controls button {
background-color: black;
color: lime;
border: 1px solid lime;
padding: 10px 20px;
font-family: monospace;
font-size: 1em;
cursor: pointer;
margin: 0 5px;
transition: background-color 0.3s, color 0.3s;
}
.controls button:hover {
background-color: lime;
color: black;
}
.controls button:active {
background-color: red;
color: black;
}