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-25 02:02:32 -04:00
|
|
|
src: url(../font/alkhemikal.ttf);
|
2023-10-24 01:40:23 -04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
Colors
|
|
|
|
======
|
|
|
|
*/
|
2023-10-18 13:32:43 -04:00
|
|
|
body {
|
2023-10-24 01:40:23 -04:00
|
|
|
background-color: rgb(255, 252, 240);
|
|
|
|
color: #802659;
|
|
|
|
font-family: Alkhemikal;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background: rgba(160, 47, 111, 0.25);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
main, article {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
main :where(ol, ul), article :where(ol, ul) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover, a:active {
|
|
|
|
background-color: rgba(135, 154, 57, 0.25);
|
|
|
|
}
|
|
|
|
|
2023-10-25 01:34:15 -04:00
|
|
|
a.logo, a.logo:hover, a.logo:active {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul, ol {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2023-10-24 01:40:23 -04:00
|
|
|
/*# sourceMappingURL=global.css.map */
|