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
| body {
max-width: 1050px;
font-family: sans-serif;
padding: 12px;
margin: 0px auto;
font-size: 11pt;
background-image: url("/static/assets/wall.png");
background-repeat: repeat;
}
.container {
background: #f9efe4;
padding: 12px;
border: 1px solid black;
box-shadow: 6px 6px rgba(0, 0, 0, 0.4);
}
a {
color: inherit;
}
pre {
margin: 0px;
}
#navbar {
display: flex;
justify-content: space-between;
}
.gaps-x > * {
margin-left: 8px;
}
.gaps-y > * {
margin-bottom: 4px;
}
.repo-name {
padding-right: 32px;
}
.b {
font-weight: bold;
}
.mt16 {
margin-top: 16px;
}
.pr8 {
padding-right: 8px;
}
.pb8 {
padding-bottom: 8px;
}
.pt8 {
padding-top: 8px;
}
.icon {
width: 16px;
height: 16px;
image-rendering: pixelated;
}
.file-item {
display: flex;
align-items: center;
}
.flex {
display: flex;
}
td {
vertical-align: top;
}
table {
table-layout: fixed;
width: 100%;
}
.file-content {
display: block;
overflow-x: scroll;
padding-bottom: 16px;
padding-left: 4px;
}
.line-nums {
text-align: right;
color: grey;
width: 32px;
padding-right: 4px;
}
|