-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (117 loc) · 1.65 KB
/
styles.css
File metadata and controls
120 lines (117 loc) · 1.65 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
html, head, body {
background: #000000;
margin: 0;
padding: 0;
overflow: hidden;
}
pre {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
overflow: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
padding: 10px;
margin: 0;
box-sizing: border-box;
word-break: break-all;
white-space: pre-line;
color: white;
font-family: 'Source Code Pro', 'Roboto Mono', Consolas, monospace;
font-size: 15px;
}
body {
box-sizing: border-box;
width: 100%;
min-height: 100%;
padding-right: 5px;
}
*::-webkit-scrollbar {
width: 3px;
height: 3px;
}
*::-webkit-scrollbar-track {
}
*::-webkit-scrollbar-thumb {
border-radius: 2px;
margin: 5px;
background: rgba(255,255,255,0.25);
}
*::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.4);
}
*::selection {
background: #FFFFFF;
}
*::-moz-selection {
background: #FFFFFF;
}
input {
/*display: none;*/
opacity: 0;
background: transparent;
color: transparent;
border: none;
outline: none;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.under {
text-decoration: underline;
}
.red {
color: #FF0000;
}
.green {
color: #00FF00;
}
.blue {
color: #0000FF;
}
.grey {
opacity: 0.5;
}
.cyan {
color: #00E0E0;
}
.spoiler {
cursor: pointer;
opacity: 0.5;
}
.spoiler.open {
opacity: 1;
cursor: default;
}
.spoiler:hover {
text-decoration: underline;
}
.spoiler.open:hover {
text-decoration: none;
}
.select {
background: #FFFFFF;
color: #000000;
animation: blink 1s infinite linear;
}
@keyframes blink {
0% {
background: #FFFFFF;
color: #000000;
}
50% {
background: #000000;
color: #FFFFFF;
}
100% {
background: #FFFFFF;
color: #000000;
}
}