-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (56 loc) · 774 Bytes
/
style.css
File metadata and controls
69 lines (56 loc) · 774 Bytes
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
:root {
background: #181820;
color: #fff;
font-family: 'Courier New', Courier, monospace;
white-space: nowrap;
font-size: 2vh;
}
.terminal {
padding: 1rem;
}
.prompt {
font-weight: bold;
font-size: 1.2rem;
}
.user {
color: #6996e6
}
.pwd {
color: #f56
}
.cmd {
color: #c2c2dccc;
font-style: italic;
}
.output {
padding: 1rem;
white-space: pre;
}
.list {
padding: 1rem;
}
.pressable {
color: #f67;
text-decoration: underline;
}
.pressable:hover {
cursor: pointer;
text-shadow: 0 0 0.5rem;
}
.list-title {
font-size: 1.1rem;
padding: 6px;
color: #f67;
}
.hidden {
visibility: hidden;
}
.cursor {
background: #fff;
animation: blink 0.5s step-start 0s infinite;
}
@keyframes blink {
50% {
opacity: 0.0;
}
}