48 lines
866 B
CSS
48 lines
866 B
CSS
@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;
|
|
} |