mirror of
https://github.com/Kaisaan/kaisaan.github.io.git
synced 2025-06-18 16:55:39 -04:00
135 lines
2.0 KiB
CSS
135 lines
2.0 KiB
CSS
@font-face {
|
|
font-family:'NDS12';
|
|
src:url('NDS12.eot');
|
|
src:url('NDS12.eot?#iefix') format('embedded-opentype'),
|
|
url('NDS12.woff') format('woff'),
|
|
url('NDS12.ttf') format('truetype'),
|
|
url('NDS12.svg#NDS12') format('svg');
|
|
font-weight:normal;
|
|
font-style:normal;
|
|
}
|
|
|
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
|
@font-face {
|
|
font-family:'NDS12';
|
|
src: url('NDS12.svg') format('svg');
|
|
font-weight:normal;
|
|
font-style:normal;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: 'NDS12';
|
|
background-color: #EFEFEF;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 10px;
|
|
}
|
|
|
|
p, h1, h2 {
|
|
margin: 2%;
|
|
}
|
|
|
|
p {
|
|
font-size: 2em;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
/* unvisited link */
|
|
a:link {
|
|
color: #1a940d;
|
|
}
|
|
|
|
/* visited link */
|
|
a:visited {
|
|
color: #126409;
|
|
}
|
|
|
|
/* mouse over link */
|
|
a:hover {
|
|
color: #66ff00;
|
|
}
|
|
|
|
/* selected link */
|
|
a:active {
|
|
color: #1a940d;
|
|
}
|
|
|
|
.navbar ul {
|
|
font-size: 1rem;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #1a940d;
|
|
}
|
|
|
|
.navstd {
|
|
float: left;
|
|
}
|
|
|
|
.navstd a {
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navstd a:hover {
|
|
background-color: #22cc4d;
|
|
}
|
|
|
|
.dropdown {
|
|
float: left;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dropdown .dropbtn {
|
|
font-size: 2em;
|
|
border: none;
|
|
outline: none;
|
|
color: white;
|
|
padding: 14px 16px;
|
|
background-color: inherit;
|
|
font-family: inherit;
|
|
margin: 0;
|
|
}
|
|
|
|
.dropdown:hover .dropbtn {
|
|
background-color: #22cc4d;
|
|
}
|
|
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f9f9f9;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1;
|
|
}
|
|
|
|
.dropdown-content a {
|
|
float: none;
|
|
color: black;
|
|
padding: 12px 16px;
|
|
text-decoration: none;
|
|
display: block;
|
|
text-align: left;
|
|
}
|
|
|
|
.dropdown-content a:hover {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
display: block;
|
|
} |