-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (59 loc) · 985 Bytes
/
style.css
File metadata and controls
71 lines (59 loc) · 985 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
.sidebar {
position: fixed;
background-color: lightseagreen;
height: 100vh;
width: 68px;
text-align: center;
}
.page {
margin-left: 68px
}
.header {
background-color: lightyellow;
text-align: center;
height: 60px;
max-width: 100vw;
position: sticky;
top: 0;
}
.content-header {
background-color: lightskyblue;
height: 160px;
}
.content-menu {
background-color: lightslategrey;
height: 64px;
position: sticky;
top: 60px;
}
.content-menu>ul {
display: flex;
flex-direction: row;
}
.content-menu>ul>li {
margin-right: 64px;
}
.content {
display: flex;
justify-content: center;
}
.content>.commits {
max-width: 1140px;
}
.code-browser {
display: flex;
flex-direction: row;
}
.code-sidebar {
background-color: lightgrey;
width: 286px;
position: sticky;
top: 124px;
align-self: flex-start;
height: calc(100vh - 124px);
}
.code {
width: calc(100vw - 286px - 68px);
font-family: monospace;
line-height: 150%;
}