79 lines
1.2 KiB
CSS
79 lines
1.2 KiB
CSS
* {
|
|
font-family: "Noto Sans";
|
|
}
|
|
|
|
.navbar {
|
|
background-color: black;
|
|
position: relative;
|
|
display: block;
|
|
text-align: center;
|
|
margin:auto;
|
|
height: 50px;
|
|
width: 90%;
|
|
border-style: solid;
|
|
border-color: black;
|
|
}
|
|
|
|
.navcontent {
|
|
color: orange;
|
|
align-self: center;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.page {
|
|
background-color: black;
|
|
}
|
|
|
|
.content {
|
|
color: white;
|
|
position: relative;
|
|
left: 5%;
|
|
top: 10px;
|
|
right: 5%;
|
|
}
|
|
/*.main {
|
|
|
|
}*/
|
|
.navcontent ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
.navcontent ul li {
|
|
float: left;
|
|
}
|
|
.navcontent ul li a {
|
|
display: block;
|
|
color: orange;
|
|
text-align: center;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navcontent ul li a:before {
|
|
display: block;
|
|
content: '';
|
|
width: 100%;
|
|
height: 8px;
|
|
translate: 0 15px;
|
|
filter: blur(16px);
|
|
background: orangered;
|
|
}
|
|
.navcontent ul li a:hover {
|
|
color: rgb(255, 225, 168);
|
|
background-color: orange;
|
|
}
|
|
a:link {
|
|
color: aqua;
|
|
}
|
|
a:visited {
|
|
color: rgb(255, 32, 32);
|
|
}
|
|
.lang {
|
|
display: block;
|
|
position: absolute;
|
|
right:0px;
|
|
appearance: base-select;
|
|
} |