adityakumar.xyz/style.css

52 lines
817 B
CSS
Raw Normal View History

2022-03-18 05:58:51 +00:00
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Lora:ital@0;1&display=swap');
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;
}
header {
font-size: 150%;
text-align: center;
}
h1, h2 {
font-family: 'Libre Baskerville', sans-serif;
}
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 {
font-family: 'Lora', sans-serif;
}
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;
}