-
Notifications
You must be signed in to change notification settings - Fork 25
/
style.css
70 lines (59 loc) · 1.46 KB
/
style.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
69
70
[data-testid="stSidebarNav"] {
background-image: url("https://github.com/dataprofessor/st-multipage-with-logo/raw/master/logo.png");
background-size: 80%;
background-repeat: no-repeat;
padding-top: 80px;
margin-top: 40px;
background-position: center top;
/* background-position: 20px 20px; */
}
[data-testid="stSidebarNav"]::before {
content: "Data Science course";
margin-left: 20px;
margin-top: 20px;
font-size: 25px;
position: relative;
top: 100px;
}
section[data-testid="stSidebar"] {
width: 370px !important; # Set the width to your desired value
}
[data-testid="stButton"] {
margin-bottom: 0px;
margin-top: 0px;
border-color: #E5E7E9;
}
li a:hover {
background: #F7DC6F;
}
[id="1-lesson-1"]::after {
padding-top:100px;
}
/* Sidebar */
.sidebar {
margin: 0;
width: 100%;
padding: 0;
background-color: #F2F3F4;
position: relative;
height: 100%;
overflow: auto;
text-indent: 10px;
border-radius: 10px;
}
.sidebar a {
display: block;
color: #2C3E50;
padding: 12px;
text-decoration: none;
list-style-type: circle;
}
.sidebar a.active {
background-color: #F63366;
color: white;
}
.sidebar a:hover:not(.active) {
/* background-color: #555; */
background-color: #F63366;
color: white;
}