mirror of
https://gitlab.com/MisterBiggs/Resume.git
synced 2025-06-15 17:06:39 +00:00
41 lines
504 B
CSS
41 lines
504 B
CSS
body {
|
|
/* max-width: 1000px; */
|
|
margin: auto;
|
|
padding-top: 20vh;
|
|
padding-left: 15vw;
|
|
padding-right: 15vw;
|
|
/* padding-bottom: 5em; */
|
|
}
|
|
|
|
p {
|
|
line-height: 1.4;
|
|
}
|
|
|
|
a {
|
|
outline: none;
|
|
text-decoration: none;
|
|
padding: 2px 1px 0;
|
|
}
|
|
|
|
a:link {
|
|
color: #70e2f1;
|
|
}
|
|
|
|
a:visited {
|
|
color: #0db0c5;
|
|
}
|
|
|
|
a:focus {
|
|
border-bottom: 1px solid;
|
|
background: #bae498;
|
|
}
|
|
|
|
a:hover {
|
|
border-bottom: 1px solid;
|
|
background: #1984fd;
|
|
}
|
|
|
|
a:active {
|
|
background: #0004ff;
|
|
color: #70e2f1;
|
|
} |