2023-01-05 00:02:43 +01:00
|
|
|
@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%;
|
2023-01-05 04:24:34 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: pink;
|
2023-01-05 00:02:43 +01:00
|
|
|
}
|
2023-01-05 04:24:34 +01:00
|
|
|
|
2023-01-05 00:02:43 +01:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2023-01-05 04:24:34 +01:00
|
|
|
.ptheme-index-header_main {
|
|
|
|
background-color: #34233b;
|
|
|
|
height: 200px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ptheme-index-header_main h1 {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ptheme-content_main {
|
|
|
|
max-width: 1260px;
|
|
|
|
width: 80%;
|
|
|
|
margin: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ptheme-index-post_article {
|
|
|
|
padding: 20px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.ptheme-index-post_article_link {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ptheme-index-post_feature-image {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-01-05 00:02:43 +01:00
|
|
|
.kg-width-wide {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kg-width-full {
|
|
|
|
margin: 0;
|
|
|
|
}
|