-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
56 lines (48 loc) · 1.31 KB
/
site.css
File metadata and controls
56 lines (48 loc) · 1.31 KB
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
.cloud {
filter: hue-rotate(280deg);
}
code {
color: darkgreen;
}
.highlight .nf {
color: darkgreen;
}
.highlight .s {
color: green;
}
.highlight .s2 {
color: lightseagreen;
}
.nav-link:hover,.nav-link:focus{
color: lime !important
}
.nav-link {
/* This is a perf killer apparently, see https://github.com/moq/moq/issues/1374#issuecomment-1671868679
animation: neonGlow 3s infinite alternate cubic-bezier(0.455, 0.030, 0.515, 0.955);
*/
}
@keyframes neonGlow {
0% {
text-shadow:
0 0 10px rgba(255, 255, 255, .3),
0 0 20px rgba(255, 255, 255, .3),
0 0 22px rgba(255, 255, 255, .3),
0 0 40px rgba(66, 220, 66, .3),
0 0 60px rgba(66, 220, 66, 0.3),
0 0 80px rgba(66, 220, 66, .1),
0 0 100px rgba(66, 220, 66, .1),
0 0 140px rgba(66, 220, 66, .1),
0 0 200px rgba(66, 220, 66, .1);
}
100% {
text-shadow:
0 0 2px rgba(255, 255, 255, .8),
0 0 8px rgba(255, 255, 255, .8),
0 0 10px rgba(255, 255, 255, .8),
0 0 20px rgba(66, 220, 66, .8),
0 0 30px rgba(66, 220, 66, .8),
0 0 40px rgba(66, 220, 66, .8),
0 0 50px rgba(66, 220, 66, .5),
0 0 80px rgba(66, 220, 66, .5);
}
}