mirror of
https://github.com/ION606/rpi-utils.git
synced 2026-05-14 21:06:54 +00:00
31 lines
490 B
CSS
31 lines
490 B
CSS
body {
|
|
margin: 0;
|
|
background-color: rgb(110, 110, 110)
|
|
}
|
|
|
|
.topnav {
|
|
overflow: hidden;
|
|
background-color: #333;
|
|
text-align: center;
|
|
align-items: center;
|
|
height: 40px;
|
|
}
|
|
|
|
.topnav a {
|
|
/* float: left; */
|
|
color: #f2f2f2;
|
|
text-align: center;
|
|
padding: 20px 20px;
|
|
text-decoration: none;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.topnav a:hover {
|
|
background-color: #ddd;
|
|
color: black;
|
|
}
|
|
|
|
.topnav a.active {
|
|
background-color: #aa0404;
|
|
color: white;
|
|
} |