-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (71 loc) · 1.42 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* css for container */
.container {
display: flex;
}
.menu-icon {
cursor: pointer;
padding: 10px;
background-color: #f0f0f0;
position: fixed;
z-index: 1;
}
.content-list {
margin-top: 40px;
width: 200px;
background-color: #f0f0f0;
height:100vh;
position: fixed;
transition: transform 0.3s;
transform: translateX(0);
}
.content-list ul {
list-style-type: none;
padding: 0;
}
.content-list li {
cursor: pointer;
margin-top: 20px;
}
.content-list li:hover{
background-color: #989595;
color:white;
}
.content-display {
margin-left: 200px;
padding: 20px;
background-color: antiquewhite;
width: 100%;
height: 100vh;
transition: margin 0.3s;
}
.content {
display: none;
margin-left: 20px;
}
.content h1{
justify-content: center;
text-align: center;
}
/* css for navbar */
/* Hide all sections by default */
div[id^="section"] {
display: none;
}
/* Style your navbar */
nav ul {
list-style: none;
padding: 0;
justify-content: center;
text-align: center;
}
nav li {
display: inline;
margin-right: 30px;
}
nav a {
text-decoration: none;
}
nav a:hover{
background-color: #989595;
color:white;
}