-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (46 loc) · 1.02 KB
/
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
body {
background: beige;
}
#monitorbox {
background: beige;
padding: 10px;
}
#content {
background: #1F1F1F;
padding-left: 1em;
padding-right: 1em;
padding-top: 1em;
padding-bottom: 1em;
width: 132ch;
height: 42em;
margin: auto;
color: #FFB000;
}
p {
margin: 2px;
font-family: "Lucida Console", Monaco, monospace;
}
a {
margin: 2px;
font-family: "Lucida Console", Monaco, monospace;
color: #FFB000;
}
a:hover {
margin: 2px;
font-family: "Lucida Console", Monaco, monospace;
color: #FFB000;
animation: blinkingText 1.2s infinite;
}
.blink{
animation: blinkingText 1.2s infinite;
}
.selected {
background: #FFB000; color: #1F1F1F;
}
@keyframes blinkingText{
0% { background: #FFB000; color: #1F1F1F; }
50% { background: #FFB000; color: #1F1F1F; }
60% { background: #1F1F1F; color: #FFB000; }
99% { background: #1F1F1F; color: #FFB000; }
100% { background: #FFB000; color: #1F1F1F; }
}