mirror of
https://github.com/jadonyack/jadonyack.github.io.git
synced 2026-06-13 02:06:11 -04:00
76 lines
1005 B
CSS
76 lines
1005 B
CSS
html {
|
|
background-color: #303030;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.topnav {
|
|
background-color: #222;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
position: sticky;
|
|
top: 0;
|
|
height: 5vh;
|
|
width: 100%;
|
|
line-height: 5vh;
|
|
}
|
|
|
|
.topnav ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.topnav li {
|
|
display: inline;
|
|
}
|
|
|
|
.topnav a {
|
|
display: block;
|
|
float: right;
|
|
color: aliceblue;
|
|
text-align: center;
|
|
padding: 0vh 1.5vw;
|
|
text-decoration: none;
|
|
font-size: medium;
|
|
margin: 0;
|
|
height: 6vh;
|
|
}
|
|
|
|
.topnav a:hover {
|
|
background-color: #191970;
|
|
}
|
|
|
|
.active {
|
|
background-color: #2727af;
|
|
}
|
|
|
|
.main-content {
|
|
padding: 10vh 20vw;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.intro {
|
|
text-align: center;
|
|
bottom margin: 20vh;
|
|
}
|
|
|
|
.pc {
|
|
margin: 20vh 0;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.pc img {
|
|
display: block;
|
|
max-width: 10vw;
|
|
object-fit: contain;
|
|
object-position: right;
|
|
padding-left: 3vw;
|
|
}
|
|
|