kevincotugno.com/css/site.css

76 lines
1.0 KiB
CSS
Raw Permalink Normal View History

2016-08-31 23:09:57 -07:00
/* Stylesheet for kevincotugno.com */
2019-10-13 00:10:16 -07:00
*, ul, a {
padding: 0;
margin: 0;
2016-08-31 23:09:57 -07:00
text-decoration: none;
}
2019-10-13 00:10:16 -07:00
p {
font-size: 1.5em;
2016-08-31 23:09:57 -07:00
}
2019-10-13 00:10:16 -07:00
body {
background-color: #fdf6e3;
color: #657b83;
font-family: serif;
2016-12-07 19:26:25 -07:00
}
2019-10-13 00:10:16 -07:00
.center {
margin: 0 auto 0 auto;
2016-12-07 19:26:25 -07:00
}
2019-10-13 00:10:16 -07:00
.readable {
max-width: 20em;
2016-08-31 23:09:57 -07:00
}
2019-10-13 00:10:16 -07:00
.text-center {
text-align: center;
2016-12-07 18:45:31 -07:00
}
2019-10-13 00:10:16 -07:00
.title {
margin-top: 3em;
margin-bottom: 1em;
color: #586e75;
font-size: 2.5em;
2016-08-31 23:09:57 -07:00
}
2019-10-13 00:10:16 -07:00
.footer {
2016-08-31 23:09:57 -07:00
text-align: center;
2019-10-13 00:10:16 -07:00
margin: 3em auto 0 auto;
display: flex;
flex-direction: row;
2020-05-22 06:43:32 -07:00
max-width: 40em;
2019-10-13 00:10:16 -07:00
}
.footer-link {
display: inline;
margin: 0 0.5em 0 0.5em;
width: 100%;
border-style: solid;
border-width: 0.15em;
height: 3em;
color: #93a1a1;
2019-10-13 20:33:01 -07:00
transition: 0.5s color;
}
.footer-link:hover {
color: #586e75;
2019-10-13 00:10:16 -07:00
}
.footer-link a {
display: inline-block;
width: 100%;
height: 100%;
color: inherit;
font-size: 1.15em;
line-height: 2.5em;
2019-10-13 20:33:01 -07:00
transition: 0.5s color;
transition: 0.5s background-color;
}
.footer-link a:hover {
color: #839496;
background-color: #002b36;
2016-08-31 23:09:57 -07:00
}