adityakumar.xyz/style.css

61 lines
838 B
CSS
Raw Normal View History

2022-03-18 06:33:54 +00:00
@font-face {
font-family: 'Libre Baskerville';
src: url('fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf');
}
@font-face {
font-family: 'Lora';
src: url('fonts/Lora/Lora-VariableFont_wght.ttf');
}
2022-03-18 05:14:36 +00:00
body {
2022-03-18 06:13:30 +00:00
background-color: linen;
2022-03-18 05:14:36 +00:00
background-repeat: no-repeat;
2022-03-18 05:58:51 +00:00
color: #606060;
margin: 10px;
2023-06-10 14:32:35 +00:00
padding: 1em;
2022-03-18 05:58:51 +00:00
}
header {
font-size: 150%;
text-align: center;
}
h1, h2 {
2022-03-18 06:33:54 +00:00
font-family: 'Libre Baskerville', serif;
2022-03-18 05:58:51 +00:00
}
2022-03-18 06:13:30 +00:00
a {
color: #b00c2f;
text-decoration: none;
}
a:hover, a:active {
text-decoration: underline;
}
2022-03-18 05:58:51 +00:00
.content {
2022-03-18 06:33:54 +00:00
font-family: 'Lora', serif;
2022-03-18 05:58:51 +00:00
}
header, main, section, footer {
padding-top: 10px;
2022-03-18 05:14:36 +00:00
}
2022-03-18 06:13:30 +00:00
footer {
margin-left: 5%;
margin-right: 5%;
text-align: center;
font-size: 80%;
}
2022-03-18 06:22:59 +00:00
a.footer-link {
color: #808080;
text-decoration: none;
}
a:hover.footer-link {
color: #b00c2f;
}