2021-12-22 04:53:53 +01:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400&display=swap');
|
2021-09-13 01:06:53 +02:00
|
|
|
@import 'colors.css';
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--title-height: min(20vmin, 90px);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Ubuntu', sans-serif;
|
2021-12-06 01:15:18 +01:00
|
|
|
margin: 0;
|
2021-09-13 01:06:53 +02:00
|
|
|
|
|
|
|
background-color: var(--background);
|
|
|
|
}
|
|
|
|
|
2021-12-21 00:03:36 +01:00
|
|
|
#include title.css
|
2021-12-23 23:57:36 +01:00
|
|
|
#include nav.css
|
2021-12-22 23:12:01 +01:00
|
|
|
#include landing.css
|
2021-12-22 23:28:07 +01:00
|
|
|
#include blog.css
|
2021-09-19 23:54:55 +02:00
|
|
|
|
2021-11-30 01:32:21 +01:00
|
|
|
.pageTitle {
|
|
|
|
margin-left: -0.15em;
|
|
|
|
color: var(--foreground-inactive);
|
|
|
|
}
|
|
|
|
|
2021-09-13 01:06:53 +02:00
|
|
|
h1 {
|
|
|
|
color: var(--color1);
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom:0;
|
2021-12-06 01:15:18 +01:00
|
|
|
margin-top:0;
|
2021-09-13 01:06:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-top: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 01:15:18 +01:00
|
|
|
--font-size: 1.4em;
|
2021-09-13 01:06:53 +02:00
|
|
|
font-size: var(--font-size);
|
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
2021-10-11 20:50:32 +02:00
|
|
|
.page {
|
2021-09-13 01:06:53 +02:00
|
|
|
position: absolute;
|
|
|
|
width: max(30vmax,500px);
|
|
|
|
left:50%;
|
2021-12-06 01:15:18 +01:00
|
|
|
top:0;
|
2021-12-01 02:38:46 +01:00
|
|
|
padding: 0px 0 50px;
|
2021-12-08 22:32:02 +01:00
|
|
|
padding-top: 5vh;
|
2021-09-13 01:06:53 +02:00
|
|
|
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
}
|
2021-12-31 17:30:27 +01:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.page {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-09-13 01:06:53 +02:00
|
|
|
|
2021-12-22 23:12:01 +01:00
|
|
|
.page .textPanel .separator {
|
|
|
|
position: relative;
|
|
|
|
background-color: var(--foreground-inactive);
|
|
|
|
|
2021-12-23 02:37:51 +01:00
|
|
|
width: .35em;
|
|
|
|
height: .35em;
|
2021-12-22 23:12:01 +01:00
|
|
|
left: 50%;
|
|
|
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.page a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--accent);
|
|
|
|
transition: all 0.1s;
|
|
|
|
}
|
|
|
|
.page a:hover {
|
2021-10-11 22:36:34 +02:00
|
|
|
color: var(--foreground);
|
2021-12-22 23:12:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.page .textPanel {
|
|
|
|
margin: 0;
|
|
|
|
margin-left: -2em;
|
|
|
|
padding: .6em 2em;
|
|
|
|
color: var(--foreground-inactive);
|
2021-12-21 01:35:20 +01:00
|
|
|
|
|
|
|
font-size: 1.1em;
|
2021-12-22 04:53:53 +01:00
|
|
|
/*font-weight: bold;*/
|
2021-12-21 01:35:20 +01:00
|
|
|
|
|
|
|
line-height: 1.25em;
|
|
|
|
|
|
|
|
background-color: var(--background);
|
2021-12-22 23:12:01 +01:00
|
|
|
border-radius: 2em;
|
2021-12-21 01:35:20 +01:00
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
border-color: var(--background-alt);
|
|
|
|
border-width: 3px;
|
|
|
|
border-style: solid;
|
2021-09-13 01:06:53 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 20:50:32 +02:00
|
|
|
.page h1 {
|
2021-10-11 22:36:34 +02:00
|
|
|
color: var(--foreground-inactive);
|
2021-09-14 01:30:16 +02:00
|
|
|
|
2021-12-22 04:53:53 +01:00
|
|
|
font-size: 1.7em;
|
2021-12-21 01:35:20 +01:00
|
|
|
|
|
|
|
margin: .5em;
|
2021-12-22 23:12:01 +01:00
|
|
|
|
|
|
|
text-align: center;
|
2021-09-13 01:06:53 +02:00
|
|
|
}
|
|
|
|
|
2021-10-15 01:33:17 +02:00
|
|
|
#include socials.css
|
2021-12-21 20:32:57 +01:00
|
|
|
#include gallery.css
|
2021-09-14 01:30:16 +02:00
|
|
|
#include planets.css
|
2021-10-15 01:33:17 +02:00
|
|
|
#include footer.css
|