Add more base theme files

This commit is contained in:
2023-01-05 00:02:43 +01:00
parent 0c415542ce
commit a9a21981cd
5 changed files with 115 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
@charset "utf-8";
/*
TABLE OF CONTENTS
------------------------------------------------------
1. Global Settings
------------------------------------------------------
*/
/*
1. Global Settings
--------------------------------------------------
Settings used for things displayed in all pages
*/
@import "fonts.css";
html, body {
/* define default font for all site */
font-family: 'Martian Mono', monospace;
font-weight: 300;
background-color: #4a3254;
color: white;
/* make the html always expand to the window size */
height: 100%;
width: 100%;
}
/* Generic class to make things unselectable */
.unselectable {
-moz-user-select: none;
-webkis-user-select: none;
-ms-user-select: none;
user-select: none;
-o-user-select: none;
}
.kg-width-wide {
margin: 0;
}
.kg-width-full {
margin: 0;
}