-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
92 lines (72 loc) · 1 KB
/
styles.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body,
html {
background-color: black;
}
@keyframes enter_bottom {
from {
transform: translateY(100%);
}
to {
transform: translateY(0%);
}
}
.animate-enter-bottom {
animation: enter_bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes ease_in {
from {
transform: scale(0.9);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
.ease-in {
animation: ease_in 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.delayed {
animation-delay: 1s;
}
/* preformatted code */
pre a {
font-style: normal;
font-weight: bold;
color: #8888ff;
}
pre code {
background: #44444444;
color: #66bbff;
border-color: #777777;
padding: 3px 5px;
border-radius: 0.2rem;
}
pre {
white-space: pre-wrap;
}
.num {
color: #ff9e64
}
.cls {
color: #f7768e;
}
.op {
color: #ccccff;
}
.var {
color: #7dcfff;
}
.str {
color: #9ece6a;
}
.bind {
color: #bb9af7;
}
.control {
color: #bb9af7;
font-weight: bold;
}
.comments {
color: #555555;
}