2023-10-24 01:40:23 -04:00
|
|
|
/*
|
|
|
|
Flexoki (https://stephango.com/flexoki)
|
|
|
|
MIT License
|
|
|
|
|
|
|
|
Copyright (c) 2023 Steph Ango
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Fonts
|
|
|
|
=====
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Alkhemikal ***
|
|
|
|
*/
|
|
|
|
@font-face {
|
|
|
|
font-family: Alkhemikal;
|
2024-05-26 17:30:03 -04:00
|
|
|
src: url("../font/alkhemikal.ttf") format("truetype");
|
2023-10-24 01:40:23 -04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
Colors
|
|
|
|
======
|
|
|
|
*/
|
2023-10-18 13:32:43 -04:00
|
|
|
body {
|
2024-05-25 20:14:37 -04:00
|
|
|
background-color: rgb(64, 62, 60);
|
|
|
|
color: rgb(255, 252, 240);
|
2023-10-24 01:40:23 -04:00
|
|
|
font-family: Alkhemikal;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background: rgba(160, 47, 111, 0.25);
|
|
|
|
}
|
|
|
|
|
2024-05-26 17:30:03 -04:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2024-05-26 12:01:17 -04:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 600px) {
|
2024-05-26 17:30:03 -04:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2024-05-26 12:01:17 -04:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-24 01:40:23 -04:00
|
|
|
h1 {
|
2024-05-25 17:36:34 -04:00
|
|
|
font-size: 3rem;
|
2023-10-24 01:40:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2024-05-25 17:36:34 -04:00
|
|
|
font-size: 2.5rem;
|
2023-10-24 01:40:23 -04:00
|
|
|
}
|
|
|
|
|
2024-05-26 12:01:17 -04:00
|
|
|
h3 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
main,
|
|
|
|
article {
|
2024-05-25 20:14:37 -04:00
|
|
|
padding: 1em;
|
|
|
|
color: #802659;
|
2024-05-25 22:47:30 -04:00
|
|
|
border: 16px solid rgb(255, 252, 240);
|
2024-05-25 20:14:37 -04:00
|
|
|
border-image: url(../img/nine-patch.png) 32 round;
|
|
|
|
-webkit-border-image: url(../img/nine-patch.png) 32 round;
|
|
|
|
background-color: rgb(255, 252, 240);
|
|
|
|
box-shadow: 0px 0px 20px rgb(16, 15, 15);
|
2023-10-24 01:40:23 -04:00
|
|
|
}
|
2024-05-25 22:01:34 -04:00
|
|
|
@media screen and (min-width: 600px) {
|
|
|
|
main,
|
|
|
|
article {
|
|
|
|
margin: 0 2em;
|
|
|
|
}
|
|
|
|
}
|
2023-10-24 01:40:23 -04:00
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
main :where(ol, ul),
|
|
|
|
article :where(ol, ul) {
|
2023-10-24 01:40:23 -04:00
|
|
|
all: revert;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2023-10-25 01:34:15 -04:00
|
|
|
header.header_main {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-10-24 01:40:23 -04:00
|
|
|
a {
|
|
|
|
color: rgb(102, 128, 11);
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
a:hover,
|
|
|
|
a:active {
|
2023-10-24 01:40:23 -04:00
|
|
|
background-color: rgba(135, 154, 57, 0.25);
|
|
|
|
}
|
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
a.logo,
|
|
|
|
a.logo:hover,
|
|
|
|
a.logo:active {
|
2023-10-25 01:34:15 -04:00
|
|
|
font-size: 3em;
|
2023-10-24 01:40:23 -04:00
|
|
|
color: rgb(160, 47, 111);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar :where(li) {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
2024-05-25 17:36:34 -04:00
|
|
|
p {
|
|
|
|
line-height: 1.5;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
ul,
|
|
|
|
ol {
|
2024-05-25 17:36:34 -04:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2024-05-25 20:14:37 -04:00
|
|
|
footer.footer_main {
|
2024-05-25 22:01:34 -04:00
|
|
|
margin: 2em 1em 1em 1em;
|
2024-05-25 20:14:37 -04:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
main > :last-child,
|
|
|
|
header > :last-child {
|
2024-05-25 20:43:05 -04:00
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2024-05-25 22:01:34 -04:00
|
|
|
.float-right {
|
2024-05-25 22:08:40 -04:00
|
|
|
margin: auto;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
max-width: 288px;
|
2024-05-25 22:01:34 -04:00
|
|
|
}
|
2024-05-25 22:08:40 -04:00
|
|
|
@media screen and (min-width: 768px) {
|
2024-05-25 22:01:34 -04:00
|
|
|
.float-right {
|
|
|
|
float: right;
|
2024-05-25 22:08:40 -04:00
|
|
|
margin-left: 1em;
|
2024-05-25 22:01:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-26 12:01:17 -04:00
|
|
|
.sigil {
|
2024-05-26 13:21:26 -04:00
|
|
|
display: inline;
|
|
|
|
image-rendering: crisp-edges;
|
|
|
|
vertical-align: text-bottom;
|
2024-05-26 01:22:21 -04:00
|
|
|
}
|
|
|
|
|
2023-10-24 01:40:23 -04:00
|
|
|
/*# sourceMappingURL=global.css.map */
|