new jekyll site up and running!

This commit is contained in:
Andrew Conlin 2023-03-04 15:33:00 +00:00
parent 907f833a2b
commit 32ce7bd7c5
25 changed files with 856 additions and 97 deletions

73
assets/css/default.css Normal file
View file

@ -0,0 +1,73 @@
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
hr {
border: none;
height: 3px;
background-color: #171717;
opacity: 100%;
}
hr.menu {
display: none;
}
@media (max-width: 768px) {
hr.menu {
display: block;
}
}
a {
color: white;
}
body {
background-color: black;
color: white;
font-family: "Rubik";
min-height: 100vh;
}
code {
color: white;
}
pre {
color: white;
background-color: #171717;
padding: 10px 10px 10px 10px;
border-radius: 10px;
white-space: pre-wrap;
}
img {
display: block;
width: 30vw;
}
img.letterboxd {
display: inline-block;
width:20px;
margin-bottom: 5px;
}
@media (max-width: 768px) {
img {
width: 90vw;
margin-left: auto;
margin-right: auto;
}
}
@media (max-width: 768px) {
img.letterboxd {
margin-left: 0;
}
}
::selection {
background-color: white;
color: black;
}