mirror of
https://github.com/Kaisaan/kaisaan.github.io.git
synced 2025-06-18 16:55:39 -04:00
39 lines
611 B
CSS
39 lines
611 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: large;
|
|
background-color: #EFEFEF;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
p, h1, h2 {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.navbar ul {
|
|
font-size: 1rem;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #259441;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.navstd {
|
|
float: left;
|
|
}
|
|
|
|
.navstd a {
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navstd a:hover {
|
|
background-color: #22cc4d;
|
|
} |