Files
Lumos_Maxima/resources/style.css
Johannes Kanig 7e3ef82bd6 update Lumos Maxima
- nicer layout, navigation bar
- simplified dispatching code to allow for file serving
2019-12-18 09:38:18 +09:00

25 lines
339 B
CSS

ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change the link color to #111 (black) on hover */
li a:hover {
background-color: #4CAF50;
}