/* Deprecated vars */ @borderLight: #CCC; @borderDark: #666; /* ----------------------------------------- */ /* Fonts */ /* ----------------------------------------- */ /* russo-one-regular - latin */ @font-face { font-family: 'Russo One'; font-style: normal; font-weight: 400; src: url('./fonts/RussoOne.ttf'); } .russoOne { font-family: 'Russo One'; font-size: 20px; font-weight: 400; } /* bungee-inline-regular - latin */ @font-face { font-family: 'Bungee Inline'; font-style: normal; font-weight: 400; src: url('./fonts/BungeeInline.ttf'); } .bungeeInline { font-family: 'Bungee Inline'; font-size: 20px; font-weight: 400; } /* open-sans-regular - latin */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url('./fonts/OpenSans-Regular.ttf'); } .openSans { font-family: 'Open Sans'; font-size: 20px; font-weight: 400; } /* ----------------------------------------- */ /* Sheet Styles */ /* ----------------------------------------- */ @colorDark: #191813; @colorFaint: #c9c7b8; @colorBeige: #b5b3a4; @colorTan: #7a7971; @colorOlive: #4b4a44; @colorCrimson: #44191A; @borderGroove: 2px groove #eeede0; @sheetBackground: url("ui/parchment.jpg") repeat; /* ----------------------------------------- */ /* Flexbox */ /* ----------------------------------------- */ .flexrow { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; > * { flex: 1; } .flex1 { flex: 1; } .flex2 { flex: 2; } .flex3 { flex: 3; } .flex4 { flex: 4; } } .flexcol { display: flex; flex-direction: column; flex-wrap: nowrap; > * { flex: 1; } .flex1 { flex: 1; } .flex2 { flex: 2; } .flex3 { flex: 3; } .flex4 { flex: 4; } }