76 lines
1.0 KiB
CSS
76 lines
1.0 KiB
CSS
/* Stylesheet for kevincotugno.com */
|
|
|
|
*, ul, a {
|
|
padding: 0;
|
|
margin: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
body {
|
|
background-color: #fdf6e3;
|
|
color: #657b83;
|
|
font-family: serif;
|
|
}
|
|
|
|
.center {
|
|
margin: 0 auto 0 auto;
|
|
}
|
|
|
|
.readable {
|
|
max-width: 20em;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.title {
|
|
margin-top: 3em;
|
|
margin-bottom: 1em;
|
|
color: #586e75;
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
margin: 3em auto 0 auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
max-width: 40em;
|
|
}
|
|
|
|
.footer-link {
|
|
display: inline;
|
|
margin: 0 0.5em 0 0.5em;
|
|
width: 100%;
|
|
border-style: solid;
|
|
border-width: 0.15em;
|
|
height: 3em;
|
|
color: #93a1a1;
|
|
transition: 0.5s color;
|
|
}
|
|
|
|
.footer-link:hover {
|
|
color: #586e75;
|
|
}
|
|
|
|
.footer-link a {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: inherit;
|
|
font-size: 1.15em;
|
|
line-height: 2.5em;
|
|
transition: 0.5s color;
|
|
transition: 0.5s background-color;
|
|
}
|
|
|
|
.footer-link a:hover {
|
|
color: #839496;
|
|
background-color: #002b36;
|
|
}
|