mirror of
https://gitlab.com/bonnebulle/plain-html-redo.git
synced 2025-12-06 01:59:32 +01:00
25 lines
322 B
CSS
25 lines
322 B
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: auto;
|
|
max-width: 1280px;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #FFF;
|
|
border-radius: 2px;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.navbar a {
|
|
color: #000;
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
padding: 10px 10px 10px 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navbar a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|