2021-12-22 03:53:53 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400&display=swap');
|
2021-09-13 00:06:53 +01:00
|
|
|
@import 'colors.css';
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--title-height: min(20vmin, 90px);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Ubuntu', sans-serif;
|
2021-12-06 00:15:18 +00:00
|
|
|
margin: 0;
|
2021-09-13 00:06:53 +01:00
|
|
|
|
|
|
|
background-color: var(--background);
|
|
|
|
}
|
|
|
|
|
2021-12-20 23:03:36 +00:00
|
|
|
#include title.css
|
2021-12-23 22:57:36 +00:00
|
|
|
#include nav.css
|
2021-12-31 17:02:21 +00:00
|
|
|
#include page.css
|
2021-12-22 22:12:01 +00:00
|
|
|
#include landing.css
|
2021-12-22 22:28:07 +00:00
|
|
|
#include blog.css
|
2022-06-04 19:33:35 +01:00
|
|
|
#include about.css
|
2021-09-19 22:54:55 +01:00
|
|
|
|
2021-09-13 00:06:53 +01:00
|
|
|
li {
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.fsText {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--foreground-inactive);
|
|
|
|
transform: scale(1);
|
|
|
|
transition: background-color 0.2s, color 0.2s, transform 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fsText a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
.fsText {
|
2021-12-06 00:15:18 +00:00
|
|
|
--font-size: 1.4em;
|
2021-09-13 00:06:53 +01:00
|
|
|
font-size: var(--font-size);
|
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-15 00:33:17 +01:00
|
|
|
#include socials.css
|
2021-12-21 19:32:57 +00:00
|
|
|
#include gallery.css
|
2021-09-14 00:30:16 +01:00
|
|
|
#include planets.css
|
2021-10-15 00:33:17 +01:00
|
|
|
#include footer.css
|