Added initial content on top of standard pages
This commit is contained in:
parent
612e564b31
commit
36d001c589
6 changed files with 100 additions and 29 deletions
149
static/css/site.css
Normal file
149
static/css/site.css
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
/* Imports */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Mountains+of+Christmas:wght@400;700&family=Pompiere&family=Short+Stack&display=swap');
|
||||
|
||||
/* Properties */
|
||||
|
||||
/* HTML Tags*/
|
||||
|
||||
html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #FF0000;
|
||||
background: linear-gradient(180deg,rgba(75, 0, 0, 0.75) 0%, rgba(75, 2, 2, 1) 15%, rgba(2, 75, 2, 1) 85%, rgba(0, 75, 0, 0.75) 100%);
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/* Attributes */
|
||||
|
||||
/* Classes */
|
||||
|
||||
.main {
|
||||
margin: auto;
|
||||
width: 65vw;
|
||||
height: 65vh;
|
||||
background: rgba(255,255,255,.25);
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 25px rgba(0,0,0,0.5);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.body-content {
|
||||
font-family: "Pompiere", sans-serif;
|
||||
font-size: 2em;
|
||||
color: white;
|
||||
text-shadow: 0 0 5px black;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.loading {
|
||||
text-align: center;
|
||||
text-decoration-style: wavy;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.site-title {
|
||||
font-family: "Mountains of Christmas", serif;
|
||||
font-size: 3em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
color: rgba(200,255,200,1);
|
||||
text-shadow: 0 0 15px rgba(99, 2, 2, 1);
|
||||
}
|
||||
|
||||
.cited-source {
|
||||
margin: 32px 60px;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.main {
|
||||
margin: auto;
|
||||
width: 80vw;
|
||||
height: 70vh;
|
||||
background: rgba(255,255,255,.25);
|
||||
padding: 6px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 25px rgba(0,0,0,0.5);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
.main {
|
||||
margin: auto;
|
||||
width: 95vw;
|
||||
height: 80vh;
|
||||
background: rgba(255,255,255,.25);
|
||||
padding: 6px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 25px rgba(0,0,0,0.5);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: auto;
|
||||
scrollbar-color: rgba(2, 99, 2, 1) rgba(99, 2, 2, 1);
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: rgba(99, 2, 2, 1);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(2, 99, 2, 1);
|
||||
border-radius: 10px;
|
||||
border: 3px solid rgba(235, 220, 35, 1);
|
||||
}
|
||||
|
||||
/*
|
||||
Google Font Notes
|
||||
*/
|
||||
|
||||
|
||||
.short-stack-regular {
|
||||
font-family: "Short Stack", cursive;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.pompiere-regular {
|
||||
font-family: "Pompiere", sans-serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.mountains-of-christmas-regular {
|
||||
font-family: "Mountains of Christmas", serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.mountains-of-christmas-bold {
|
||||
font-family: "Mountains of Christmas", serif;
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.berkshire-swash-regular {
|
||||
font-family: "Berkshire Swash", serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue