-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (88 loc) · 1.74 KB
/
style.css
File metadata and controls
102 lines (88 loc) · 1.74 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
html {
background-color: rgb(25, 25, 30);
color: rgb(181, 181, 227);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
margin: 0px;
display:flex;
}
.sidebar {
width: 25%;
height: 100%;
background-color: rgba(0, 0, 0, 0.25);
display: flex;
flex-direction: column;
}
.sidebar h2 {
cursor: pointer;
padding-top:5px;
padding-left:15px;
padding-bottom:5px;
margin:0px;
background-color:rgba(181, 181, 227, 0.25);
}
.sidebar h2:hover {
background-color:rgba(181, 181, 227, 0.35);
}
.sidebar h2:active {
background-color:rgba(181, 181, 227, 0.25);
}
.content {
width: 100%;
display: flex;
flex-direction: column;
gap: 15px;
overflow-y: auto;
}
details {
cursor: pointer;
font-weight: bold;
padding-top: 4.2px;
padding-bottom: 4.2px;
border-radius:10px;
padding:10px;
display:flex;
flex-direction: column;
gap:5px;
background-color: rgba(181, 181, 227, 0.05);
}
details:hover {
background-color: rgba(181, 181, 227, 0.1);
}
details:open {
background-color: rgba(181, 181, 227, 0.1);
}
details a {
white-space: nowrap;
overflow:hidden;
text-overflow: ellipsis;
font-weight: normal;
align-self: center;
margin-left: 25px;
}
.link-display {
border-radius:10px;
cursor: pointer;
height: 30px;
display: flex;
}
.link-display-a {
border-radius:10px;
cursor: pointer;
height: 30px;
display: flex;
background-color: rgba(181, 181, 227, 0.2);
}
.link-display-a a {
font-weight: 700;
}
.link-display:hover {
background-color: rgba(181, 181, 227, 0.1);
}
.md-view {
padding:15px;
height:calc(100% - 30px);
width:73%;
overflow-y:auto;
}