renaming filenames
This commit is contained in:
@@ -1,22 +1,31 @@
|
|||||||
/* Printing */
|
/* PRINTING */
|
||||||
@media print {
|
@media print {
|
||||||
.no-print {
|
.no-print {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* END OF PRINTING */
|
||||||
|
|
||||||
/* Variables */
|
/* FONTS */
|
||||||
/* Blue - Beige */
|
@font-face {
|
||||||
|
font-family: "big_noodle_titling";
|
||||||
|
src: url("/fonts/big_noodle_titling.ttf") format("truetype");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "CreatoDisplay";
|
||||||
|
src: url("/fonts/CreatoDisplay-Bold.otf") format("opentype");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
/* END OF FONTS */
|
||||||
|
|
||||||
|
/* VARIABLES */
|
||||||
:root {
|
:root {
|
||||||
/*--primary: #bfb04c;
|
--primary: black;
|
||||||
--secondary: #bdad46;
|
--secondary: black;
|
||||||
--tertiary: #4b5743;
|
|
||||||
--quaternary: #3e4637;
|
|
||||||
--background_paper: #453d3e;
|
|
||||||
--background: #353d2e;*/
|
|
||||||
|
|
||||||
--primary: #f74510;
|
|
||||||
--secondary: #c6b652;
|
|
||||||
--tertiary: #5a6952;
|
--tertiary: #5a6952;
|
||||||
--quaternary: #424542;
|
--quaternary: #424542;
|
||||||
--background_paper1: #293029;
|
--background_paper1: #293029;
|
||||||
@@ -24,41 +33,15 @@
|
|||||||
--background_paper3: #293009;
|
--background_paper3: #293009;
|
||||||
--background: #5a6952;
|
--background: #5a6952;
|
||||||
|
|
||||||
/*--tertiary: #948979;*/
|
--font-heading: big_noodle_titling;
|
||||||
/*--quaternary: #f5bb78;*/
|
--font-text: CreatoDisplay;
|
||||||
/*--background: #c4bbb8;*/
|
|
||||||
/*--background_paper: #dfd0b8;*/
|
|
||||||
}
|
}
|
||||||
|
/* END OF VARIABLES */
|
||||||
|
|
||||||
|
/* ELEMENTS */
|
||||||
body {
|
body {
|
||||||
/*background-image: linear-gradient(to bottom, aqua, blue);*/
|
margin: 0 auto;
|
||||||
font-family:
|
font-family: var(--font-text);
|
||||||
"Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
|
|
||||||
|
|
||||||
/*width: 100vw;*/
|
|
||||||
/*height: 100vh;*/
|
|
||||||
|
|
||||||
/*background-image: url("../img/background.png");
|
|
||||||
background-size: cover;*/
|
|
||||||
background-color: var(--background);
|
|
||||||
}
|
|
||||||
|
|
||||||
div {
|
|
||||||
background-color: var(--background_paper1);
|
|
||||||
box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
|
|
||||||
border: solid 2px var(--primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
div > div {
|
|
||||||
background-color: var(--background_paper2);
|
|
||||||
box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
|
|
||||||
border: solid 2px var(--primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
div > div > div {
|
|
||||||
background-color: var(--background_paper3);
|
|
||||||
box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
|
|
||||||
border: solid 2px var(--primary);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@@ -70,6 +53,29 @@ h2,
|
|||||||
h3,
|
h3,
|
||||||
h4 {
|
h4 {
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
|
font-family: var(--font-heading);
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* END OF ELEMENTS */
|
||||||
|
|
||||||
|
/* CLASSES */
|
||||||
|
.bordered-1 {
|
||||||
|
width: 300px;
|
||||||
|
box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
|
||||||
|
/*padding: 15px;*/
|
||||||
|
border: 30px solid;
|
||||||
|
border-image: url("/img/borders/border-minimal.png") 30 round;
|
||||||
|
/*border-image: url("/img/borders/border2.png") 30;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex-row {
|
||||||
|
display: flexbox;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-img {
|
.album-img {
|
||||||
@@ -114,3 +120,5 @@ h4 {
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
/* Centers the page horizontally */
|
/* Centers the page horizontally */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* END OF CLASSES */
|
||||||
|
|||||||
BIN
nginx/vue/public/img/borders/border-minimal.png
Normal file
BIN
nginx/vue/public/img/borders/border-minimal.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.2 KiB |
BIN
nginx/vue/public/img/borders/border2.png
Normal file
BIN
nginx/vue/public/img/borders/border2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
Reference in New Issue
Block a user