Skip to content

Commit b978fec

Browse files
authored
Create style.css
1 parent 3e8fb58 commit b978fec

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

style.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
body {
2+
display: flex;
3+
font-family: Arial, sans-serif;
4+
}
5+
#content {
6+
flex: 1;
7+
padding: 20px;
8+
max-width: 600px;
9+
margin-right: 20px;
10+
}
11+
#sidebar {
12+
width: 200px;
13+
position: fixed;
14+
top: 20px;
15+
right: 20px;
16+
}
17+
#sidebar ul {
18+
list-style-type: none;
19+
padding: 0;
20+
}
21+
#sidebar li {
22+
padding: 5px;
23+
cursor: pointer;
24+
}
25+
#sidebar li.active {
26+
font-weight: bold;
27+
color: blue;
28+
}

0 commit comments

Comments
 (0)