yequari.com/themes/saturn/static/css/main.css

364 lines
5.6 KiB
CSS
Raw Normal View History

2023-08-12 10:44:17 +00:00
/* CSS HEX */
:root {
--jet: #353535ff;
--chinese-red: #aa3322ff;
--pale-silver: #c4bbafff;
--space-cadet: #292640ff;
--xiketic: #0f101aff;
--blue-ryb: #4056f4ff;
--raisin-black: #241e1eff;
--dim-gray: #756b6bff;
--pewter-blue: #93A8ACff;
--celestial-blue: #5299D3;
--white-smoke: #F1EDEE;
--midnight-blue: #18206F;
--penn-blue: #17255A;
--eerie-black: #172121;
--vista-blue: #8EA4D2;
/* solarized dark colors */
--base00: #657b83;
--base01: #586e75;
--base02: #073642;
--base03: #002b36;
--base0: #839496;
--base1: #93a1a1;
--base2: #eee8d5;
--base3: #fdf6e3;
--yellow: #b58900;
--orange: #cb4b16;
--red: #dc322f;
--magenta: #d33682;
--violet: #6c71c4;
--blue: #268bd2;
--cyan: #2aa198;
--green: #859900;
--main-bg: var(--base02);
--content-bg: var(--base03);
--primary-text: var(--base0);
--secondary-text: var(--base01);
--primary-link: var(--magenta);
--primary-link-hover: var(--red);
--secondary-link: var(--blue);
2023-09-12 23:48:39 +00:00
--ternary-link: var(--yellow);
2023-08-12 10:44:17 +00:00
}
@font-face {
font-family: "Genesis";
src: url("/fonts/NiseGenesis.TTF");
}
/*
* Page text: Krub
* Headings & Top nav: Lalezar
*/
body {
background-color: var(--main-bg);
color: var(--primary-text);
font-family: 'Krub', sans-serif;
scrollbar-width: none;
2023-09-13 06:46:30 +00:00
padding: 0;
margin: 0;
overscroll-behavior: none;
2023-08-12 10:44:17 +00:00
}
body::-webkit-scrollbar {
display: none;
}
2023-09-12 23:48:39 +00:00
h1,h2,h3,h4,h5,h6 {
color: var(--primary-text);
font-family: 'Lalezar', display;
}
2023-08-12 10:44:17 +00:00
p {
2023-09-13 06:46:30 +00:00
height: fit-content;
2023-09-12 23:48:39 +00:00
line-height: 1.5;
2023-08-12 10:44:17 +00:00
}
a:link, a:visited {
color: var(--primary-link);
text-decoration: none;
}
a:hover, a:active {
text-decoration: underline;
}
2023-09-12 23:48:39 +00:00
a.tag {
color: var(--secondary-link);
}
2023-08-12 10:44:17 +00:00
2023-09-12 23:48:39 +00:00
a.permalink {
padding: 0 5px;
2023-08-12 10:44:17 +00:00
}
2023-09-12 23:48:39 +00:00
a.summary {
color: var(--primary-text);
}
.big {
display: flex;
flex-direction: row;
2023-08-12 10:44:17 +00:00
}
.column {
display: flex;
flex-direction: column;
gap: 10px;
2023-09-13 06:46:30 +00:00
margin: 0 auto;
padding: 0;
2023-09-12 23:48:39 +00:00
flex: 1;
2023-08-12 10:44:17 +00:00
}
2023-09-13 06:46:30 +00:00
.header-nav {
width: 350px;
position: sticky;
top: 0px;
}
2023-08-12 10:44:17 +00:00
header {
display: flex;
flex-flow: row wrap;
flex-shrink: 0;
2023-09-13 06:46:30 +00:00
position: sticky;
top: 0px;
height: 300px;
2023-08-12 10:44:17 +00:00
}
header h1 {
font-family: "Genesis", 'Courier New', Courier, monospace;
font-size: 1.5rem;
color: var(--pewter-blue);
2023-09-13 06:46:30 +00:00
width: 350px;
2023-08-12 10:44:17 +00:00
}
2023-09-12 23:48:39 +00:00
header a.sitetitle {
text-decoration: none;
}
2023-09-13 06:46:30 +00:00
2023-08-12 10:44:17 +00:00
nav {
2023-09-12 23:48:39 +00:00
flex: 0 0 100px;
text-align: right;
2023-09-13 06:46:30 +00:00
position: sticky;
top: 300px;
2023-08-12 10:44:17 +00:00
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
2023-09-12 23:48:39 +00:00
/*nav li {
2023-08-12 10:44:17 +00:00
display: inline;
2023-09-12 23:48:39 +00:00
}*/
2023-08-12 10:44:17 +00:00
nav li a {
display: inline-block;
padding: 15px 20px;
transition-property: background-color;
transition-duration: 0.5s;
transition-delay: 0.1s;
font-family: 'Nova Mono', monospace;
font-weight: bold;
font-size: 0.9em;
}
2023-09-12 23:48:39 +00:00
nav li a:link, nav li a:visited {
color: var(--ternary-link);
}
2023-08-12 10:44:17 +00:00
main {
flex: 1;
display: flex;
2023-09-12 23:48:39 +00:00
background-color: rgba(23,33,33,0.7);
2023-09-13 06:46:30 +00:00
padding: 0 150px;
2023-08-12 10:44:17 +00:00
flex-flow: row wrap;
/* gap: 20px; */
z-index: 1;
2023-09-12 23:48:39 +00:00
/* margin: 0 0.1rem; */
2023-08-12 10:44:17 +00:00
}
.sidebar {
flex: 3 1;
margin: 0 2rem;
}
.sidebar p {
line-height: 1;
}
2023-09-12 23:48:39 +00:00
.content {
2023-08-12 10:44:17 +00:00
flex: 8 1;
padding: 0 1rem;
}
2023-09-12 23:48:39 +00:00
article p {
2023-08-12 10:44:17 +00:00
text-indent: 1rem;
text-align: justify;
}
2023-09-12 23:48:39 +00:00
section.posts ul {
list-style-type: none;
}
article time {
color: var(--secondary-text);
}
article a.title {
color: var(--yellow);
}
code {
background-color: black;
padding: 10px;
overflow-x: scroll;
color: white;
}
pre code{
display: block;
}
ul.pagination {
list-style: none;
text-align: center;
}
li.page-item {
display: inline;
padding: 0.3rem;
}
2023-08-12 10:44:17 +00:00
footer {
padding: 0 0 15px 0px;
text-align: center;
color: var(--secondary-text);
border-top: 1px solid var(--secondary-text);
2023-09-13 06:46:30 +00:00
position: sticky;
top: 450px;
2023-08-12 10:44:17 +00:00
}
footer div {
}
footer ul.social {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
footer li.social {
display: inline;
}
footer li.social a {
display: inline-block;
padding: 0 10px;
color: var(--secondary-link);
}
#webmentions img { max-height: 1.2em; margin-right: -1ex; }
2023-09-12 23:48:39 +00:00
.hidden {
display: none;
2023-08-12 10:44:17 +00:00
}
2023-09-12 23:48:39 +00:00
.center {
2023-08-12 10:44:17 +00:00
text-align: center;
}
/*
* Links page
*/
#links-main {
display: flex;
flex-flow: row wrap;
}
#links-main li {
padding: 7px 0;
}
.links-column {
2023-09-13 06:46:30 +00:00
flex: 1 1 300px;
2023-08-12 10:44:17 +00:00
overflow-wrap: break-word;
2023-09-13 06:46:30 +00:00
height: fit-content;
2023-08-12 10:44:17 +00:00
}
.hover-links {
position: relative;
2023-09-12 23:48:39 +00:00
border-bottom: 1px dotted var(--secondary-link);
}
a.hover-links:hover {
text-decoration: none;
2023-08-12 10:44:17 +00:00
}
.hover-links:before {
content: attr(data-hover);
visibility: hidden;
opacity: 0;
max-width: 340px;
min-width: 200px;
2023-09-12 23:48:39 +00:00
background-color: var(--main-bg);
color: var(--primary-text);
2023-08-12 10:44:17 +00:00
text-align: center;
2023-09-12 23:48:39 +00:00
border: 4px double var(--primary-text);
2023-08-12 10:44:17 +00:00
border-radius: 5px;
padding: 5px;
2023-09-12 23:48:39 +00:00
transition: opacity 0.3s ease-in-out;
2023-08-12 10:44:17 +00:00
position: absolute;
z-index: 1;
left: -50px;
top: -250%;
}
.hover-links:hover:before {
2023-09-12 23:48:39 +00:00
opacity: 0.8;
2023-08-12 10:44:17 +00:00
visibility: visible;
}
@media only screen and (max-width: 450px) {
div.nav {
border: none;
}
body {
background-color: var(--content-bg);
}
2023-09-12 23:48:39 +00:00
.big {
flex-direction: column;
width: unset;
}
2023-08-12 10:44:17 +00:00
.column {
border: none;
background: none;
max-width: unset;
margin: 0 auto;
padding: 0.2rem;
}
#content {
padding: 0;
}
div.titlex {
margin: 0 auto;
}
}