-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark_theme.scss
More file actions
61 lines (54 loc) · 1.4 KB
/
dark_theme.scss
File metadata and controls
61 lines (54 loc) · 1.4 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
/*-- scss:defaults --*/
// Base document colors
$body-bg: #2b282acf;
$body-color: #ffdc00;
$link-color: #75AADB;
$navbar-bg: #ffdc00;
// Code blocks
$code-block-bg: #e2e5e9ff;
/*$code-block-bg-alpha: -.9;
/*-- scss:rules --*/
.sitemap {
margin: 1em 0;
border: 2px solid gray;
border-left: 10px solid teal;
border-radius: 10px;
background-color: white;
padding: 0; /* Ensure no unwanted padding */
}
/* Style the first child element (assumed to be the header) */
.sitemap > *:first-child {
margin: 0;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 55px;
color: black;
background-color: white;
border-top-right-radius: 10px;
font-size: 1em;
font-weight: bold;
display: flex;
align-items: center; /* Vertically center the icon with text */
position: relative;
min-height: 45px; /* Ensures space for the icon */
/* Add the icon as a background image */
background-image: url('/images/logo.png');
background-size: 35px auto; /* Ensures the image scales properly */
background-repeat: no-repeat;
background-position: 10px center; /* Adjust position */
}
/* Style the rest of the content */
.sitemap > *:not(:first-child) {
padding-top: 10px;
padding-left: 15px;
color: black;
background-color: white;
border-bottom-right-radius: 10px;
}
/* add padding around footer */
.footer {
box-sizing: border-box;
width: 100%;
padding: 20px;
}