-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (57 loc) · 908 Bytes
/
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
body {
font-family: 'Roboto Mono', monospace;
background-color: #151515;
color: #CCCCCC;
margin: 10px;
}
main {
max-width: 800px;
margin: auto;
}
.file-list {
padding-left: 15px;
border-left: 2px solid #303030;
}
li {
padding-top: 2.5px;
padding-bottom: 2.5px;
}
summary {
margin-bottom: 5px;
}
.no-color-link {
text-decoration: none;
color: #CCCCCC;
}
a {
text-decoration: none;
color: #1AA7EC;
}
a:hover {
text-decoration: underline;
color: #66C2FF;
}
.repo {
box-sizing: border-box;
border: 2px solid #303030;
padding-left: 12px;
padding-right: 12px;
margin-bottom: 5px;
}
code, pre, samp {
font-family: 'Roboto Mono', monospace;
}
code {
background-color: #101010;
padding: 2px;
margin: 2px;
border-radius: 5%;
}
pre {
background-color: #101010;
padding: 10px;
margin: 5px;
width: 100%;
border-radius: 2px;
overflow-x: auto;
}