Skip to content

Commit 3112fe1

Browse files
authored
Create style.css
1 parent 7d747db commit 3112fe1

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

style.css

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
ul {
2+
list-style-type: none;
3+
margin: 0;
4+
padding: 0;
5+
overflow: hidden;
6+
background-color: #333;
7+
}
8+
9+
li {
10+
float: left;
11+
}
12+
13+
li a {
14+
display: block;
15+
color: white;
16+
text-align: center;
17+
padding: 14px 16px;
18+
text-decoration: none;
19+
}
20+
21+
li a:hover:not(.active) {
22+
background-color: powderblue;
23+
}
24+
25+
.active {
26+
background-color:powderblue;
27+
}
28+
29+

0 commit comments

Comments
 (0)