-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 926 Bytes
/
style.css
File metadata and controls
56 lines (50 loc) · 926 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
body {
font-family: monospace;
white-space: pre-wrap;
line-height: 1.5;
padding: 20px;
max-width: 100%;
overflow-x: hidden;
word-wrap: break-word;
font-size: 15px;
}
a {
color: #0000FF;
text-decoration: underline;
word-break: break-all;
}
.back-nav {
display: block;
color: #0000FF;
text-decoration: underline;
margin-bottom: 20px;
}
.copy-button {
background: #4444FF;
color: white;
border: none;
padding: 8px 16px;
cursor: pointer;
font-family: monospace;
margin-bottom: 20px;
opacity: 0.8;
font-size: 15px;
}
.copy-button:hover {
opacity: 1;
}
@media (max-width: 768px) {
body {
font-size: 12px;
}
body .copy-button {
width: 100% !important;
display: block !important;
}
}
pre {
background-color: #f5f5f5;
padding: 15px;
border-radius: 5px;
overflow-x: auto;
}