259 lines
3.6 KiB
CSS
Executable file
259 lines
3.6 KiB
CSS
Executable file
a {
|
|
color: #f3bbae;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: var(--primary-text-size);
|
|
}
|
|
|
|
a {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
height: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #f3bbae;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #241917;
|
|
}
|
|
|
|
.alt-bullet {
|
|
padding-left: 1rem !important;
|
|
}
|
|
|
|
.braille {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-flow: row;
|
|
}
|
|
|
|
.braille {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
width: var(--size);
|
|
height: var(--size);
|
|
font: 12px/12px "Iosevka Web", monospace;
|
|
}
|
|
|
|
.braille .hidden {
|
|
position: fixed;
|
|
bottom: 100%;
|
|
right: 100%;
|
|
}
|
|
|
|
.braille>* {
|
|
white-space: pre;
|
|
}
|
|
|
|
.bullet-text {
|
|
font-size: var(--primary-text-size);
|
|
text-align: left;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
|
|
.bullet::before {
|
|
content: "-";
|
|
display: inline-block;
|
|
width: 1em;
|
|
}
|
|
|
|
.center-text {
|
|
position: fixed;
|
|
gap: 25px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 4px solid #f3bbae92;
|
|
text-align: left;
|
|
z-index: 10;
|
|
background-color: #241917;
|
|
max-width: 30rem;
|
|
top: 30%;
|
|
left: 15%;
|
|
}
|
|
|
|
.code {
|
|
word-wrap: break-word;
|
|
display: block;
|
|
font-size: var(--primary-text-size);
|
|
background-color: #241917;
|
|
color: #fff !important;
|
|
border: 4px solid #f3bbae92;
|
|
padding: 5px;
|
|
}
|
|
|
|
.dashboard {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.globe-txt {
|
|
display: flex;
|
|
position: fixed;
|
|
right: 0;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
|
|
ul.custom-bullet {
|
|
list-style-type: none;
|
|
}
|
|
|
|
ul.custom-bullet li {
|
|
position: relative;
|
|
}
|
|
|
|
ul.custom-bullet li::before {
|
|
content: "-";
|
|
position: absolute;
|
|
left: -15px;
|
|
}
|
|
|
|
.links {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.links a {
|
|
text-decoration-skip: spaces;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: #241917;
|
|
color: #f3bbae;
|
|
font-family: Monaco, monospace !important;
|
|
}
|
|
|
|
:root {
|
|
--size: calc(100vmin / 1.618033988749895);
|
|
--primary-text-size: 12px;
|
|
}
|
|
|
|
.tab-content {
|
|
display: none;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.tab-content a[href]:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.tab-icon {
|
|
width: var(--primary-text-size);
|
|
color: #f3bbae;
|
|
fill: #f3bbae;
|
|
padding-left: 0.25rem;
|
|
}
|
|
|
|
.tab-link {
|
|
cursor: pointer;
|
|
border-width: 0 4px 4px 0;
|
|
border-style: solid;
|
|
border-color: #f3bbae92;
|
|
font-size: var(--primary-text-size);
|
|
}
|
|
|
|
.tab-link {
|
|
color: #f3bbae;
|
|
text-decoration: none;
|
|
margin-right: 2.5rem;
|
|
min-width: 4.5rem;
|
|
}
|
|
|
|
.tab-link svg {
|
|
fill: #f3bbae;
|
|
width: 12px;
|
|
}
|
|
|
|
.tab:hover label {
|
|
background-color: #f3bbae92;
|
|
color: #241917;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.tab>label {
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0.35rem 0.75rem;
|
|
letter-spacing: 1px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.tabbed {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.tabbed [type="radio"] {
|
|
display: none;
|
|
}
|
|
|
|
.tabbed [type="radio"]:nth-of-type(4):checked~.tab-content:nth-of-type(4) {
|
|
display: block;
|
|
}
|
|
|
|
.tabbed [type="radio"]:nth-of-type(5):checked~.tabs .tab:nth-of-type(5) label {
|
|
background-color: #f3bbae92;
|
|
color: #241917;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
align-items: stretch;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.text-icon {
|
|
fill: #f3bbae;
|
|
width: 12px;
|
|
}
|
|
|
|
.text-icon {
|
|
padding-left: 0.5rem;
|
|
}
|
|
|
|
.visible {
|
|
z-index: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 625px) {
|
|
.globe-txt {
|
|
position: fixed;
|
|
right: 50%;
|
|
top: 50%;
|
|
transform: translate(50%, -50%);
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 625px) {
|
|
.center-text {
|
|
left: 15px;
|
|
right: 15px;
|
|
margin-left: 0;
|
|
margin-top: 0;
|
|
max-width: 100vw;
|
|
}
|
|
}
|