myco.systems/public/style.css

406 lines
6.1 KiB
CSS
Raw Normal View History

2024-11-03 09:17:08 -05:00
:root {
--primary-text-size: 12px;
2024-11-11 15:37:08 -05:00
--size: calc(100vmin / 1.618033988749895);
2024-11-03 09:14:49 -05:00
}
2024-11-03 09:17:08 -05:00
html,
body {
height: 100vh;
overflow: hidden;
2024-11-11 15:37:08 -05:00
width: 100%;
2024-11-03 09:14:49 -05:00
}
2024-11-03 09:17:08 -05:00
body {
2024-01-29 20:46:10 -05:00
background: #241917;
2024-11-03 09:17:08 -05:00
color: #f3bbae;
font-family: Monaco, monospace !important;
2024-11-11 15:37:08 -05:00
margin: 0;
2023-09-03 23:48:44 -04:00
}
2024-11-03 09:17:08 -05:00
body,
2024-01-29 20:46:10 -05:00
.braille {
2023-09-03 23:48:44 -04:00
align-items: center;
2024-11-11 15:37:08 -05:00
display: flex;
2024-01-29 20:46:10 -05:00
flex-flow: row;
2024-11-11 15:37:08 -05:00
justify-content: center;
2023-09-03 23:48:44 -04:00
}
2024-01-29 20:46:10 -05:00
.braille {
2024-11-11 15:37:08 -05:00
font: 10px/10px "Iosevka Web", monospace;
height: var(--size);
2024-01-29 20:46:10 -05:00
max-height: 100%;
2024-11-11 15:37:08 -05:00
max-width: 100%;
2024-01-29 20:46:10 -05:00
width: var(--size);
2023-09-03 23:48:44 -04:00
}
2024-11-03 09:17:08 -05:00
.braille>* {
white-space: pre;
}
2024-01-29 20:46:10 -05:00
.braille .hidden {
bottom: 100%;
2024-11-11 15:37:08 -05:00
position: fixed;
2024-01-29 20:46:10 -05:00
right: 100%;
2023-10-15 16:28:14 -04:00
}
2024-11-03 09:17:08 -05:00
.globe-txt {
display: flex;
position: fixed;
right: 0;
2024-11-03 09:14:49 -05:00
}
2024-11-11 15:37:08 -05:00
.links {
padding: 0;
}
2024-11-03 09:17:08 -05:00
@media only screen and (max-width: 625px) {
.globe-txt {
position: fixed;
right: 50%;
top: 50%;
transform: translate(50%, -50%);
}
.dashboard {
flex-direction: column !important;
}
2024-03-15 16:45:23 -04:00
2024-11-03 09:17:08 -05:00
.center-text {
2024-11-11 17:58:23 -05:00
left: 2px !important;
right: 2px !important;
2024-11-03 09:17:08 -05:00
margin-left: 0;
margin-top: 0;
max-width: 100vw;
}
}
2024-11-11 15:37:08 -05:00
.center-text {
background-color: #241917;
border: 4px solid #9a756c;
display: flex;
flex-direction: column;
gap: 25px;
left: 15%;
max-width: 35rem;
position: fixed;
text-align: left;
top: 30%;
z-index: 10;
}
2024-11-03 09:17:08 -05:00
::-webkit-scrollbar {
height: 3px;
}
::-webkit-scrollbar-track {
background: #241917;
}
::-webkit-scrollbar-thumb {
background: #f3bbae;
}
.tab,
.tab-link {
2024-11-03 09:50:31 -05:00
border-color: #9a756c;
2024-11-11 15:37:08 -05:00
border-style: solid;
border-width: 0 4px 4px 0;
cursor: pointer;
2024-11-03 09:50:31 -05:00
font-size: 10px;
2024-02-04 23:35:52 -05:00
}
2024-11-03 09:17:08 -05:00
.tab-link {
color: #f3bbae;
margin-right: 2.5rem;
min-width: 4.5rem;
2024-11-11 15:37:08 -05:00
text-decoration: none;
2024-03-23 17:36:01 -04:00
}
2024-11-03 09:17:08 -05:00
.tab-link svg {
fill: #f3bbae;
width: 12px;
2024-03-23 17:36:01 -04:00
}
2024-11-03 09:17:08 -05:00
a {
color: #f3bbae;
transition: color 0.3s ease;
}
label>a {
transition: none !important;
2024-11-03 09:17:08 -05:00
}
p {
font-size: var(--primary-text-size);
2024-11-11 15:37:08 -05:00
margin: 0;
2024-11-03 09:17:08 -05:00
}
.tabbed {
overflow-x: hidden;
}
.tabbed [type="radio"] {
display: none;
2024-02-04 23:35:52 -05:00
}
2024-11-03 09:14:49 -05:00
ul.custom-bullet {
list-style-type: none;
2024-03-23 16:29:45 -04:00
}
2024-11-03 09:14:49 -05:00
ul.custom-bullet li {
position: relative;
2024-03-23 16:29:45 -04:00
}
2024-11-03 09:14:49 -05:00
ul.custom-bullet li::before {
content: "-";
left: -15px;
2024-11-11 15:37:08 -05:00
position: absolute;
2024-02-04 23:35:52 -05:00
}
2024-11-03 09:17:08 -05:00
.tab>label {
2024-11-11 15:37:08 -05:00
cursor: pointer;
2024-11-03 09:17:08 -05:00
display: flex;
2024-11-03 09:14:49 -05:00
margin: 0;
2024-11-03 09:17:08 -05:00
padding: 0.35rem 0.75rem;
2024-02-04 14:40:40 -05:00
}
2024-11-03 09:50:31 -05:00
.tab:hover a,
.tab:hover svg {
color: #241917 !important;
fill: #241917 !important;
}
2024-11-03 09:17:08 -05:00
.tab:hover label {
2024-11-03 09:50:31 -05:00
background-color: #9a756c;
2024-11-03 09:17:08 -05:00
color: #241917;
font-weight: 700;
transition: background-color 0.3s ease;
}
2024-02-04 14:40:40 -05:00
2024-11-03 09:14:49 -05:00
.tab-content {
display: none;
padding: 1rem;
2024-01-29 22:14:50 -05:00
}
.tab-content:has(a.btn) {
padding-bottom: 2.5rem;
}
2024-11-03 09:17:08 -05:00
.tabbed [type="radio"]:nth-of-type(1):checked~.tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked~.tabs .tab:nth-of-type(2) label,
.tabbed [type="radio"]:nth-of-type(3):checked~.tabs .tab:nth-of-type(3) label,
.tabbed [type="radio"]:nth-of-type(4):checked~.tabs .tab:nth-of-type(4) label,
.tabbed [type="radio"]:nth-of-type(5):checked~.tabs .tab:nth-of-type(5) label {
2024-11-03 09:50:31 -05:00
background-color: #9a756c;
2024-11-03 09:17:08 -05:00
color: #241917;
font-weight: 700;
2024-01-29 22:14:50 -05:00
}
2024-11-03 09:17:08 -05:00
.tabbed [type="radio"]:nth-of-type(1):checked~.tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked~.tab-content:nth-of-type(2),
.tabbed [type="radio"]:nth-of-type(3):checked~.tab-content:nth-of-type(3),
.tabbed [type="radio"]:nth-of-type(4):checked~.tab-content:nth-of-type(4) {
display: block;
2024-02-07 19:38:11 -05:00
}
2024-11-03 09:17:08 -05:00
.code {
background-color: #241917;
2024-11-03 09:50:31 -05:00
border: 4px solid #9a756c;
2024-11-11 15:37:08 -05:00
color: #fff !important;
display: block;
font-size: 10px;
2024-11-03 09:17:08 -05:00
padding: 5px;
2024-11-11 15:37:08 -05:00
word-wrap: break-word;
2024-02-07 19:38:11 -05:00
}
2024-11-03 09:17:08 -05:00
.bullet-text {
font-size: var(--primary-text-size);
padding-top: 1rem;
2024-11-11 15:37:08 -05:00
position: relative;
text-align: left;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
.tab-content a[href]:hover {
color: #ffffff;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
.visible {
position: absolute;
right: 0;
2024-11-11 15:37:08 -05:00
z-index: 0;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
ul {
list-style-type: none;
}
.tabs {
align-items: stretch;
2024-11-11 15:37:08 -05:00
display: flex;
2024-11-03 09:17:08 -05:00
list-style: none;
2024-11-03 09:14:49 -05:00
margin: 0;
2024-11-03 09:17:08 -05:00
padding: 0;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
.bullet::before {
content: "-";
display: inline-block;
width: 1em;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
.alt-bullet {
padding-left: 1rem !important;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
.dashboard {
2024-11-03 09:14:49 -05:00
display: flex;
2024-11-03 09:17:08 -05:00
flex-direction: row;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:17:08 -05:00
.icon,
2024-11-03 09:14:49 -05:00
.text-icon {
fill: #f3bbae;
width: 12px;
2024-02-11 03:52:49 -05:00
}
2024-11-03 09:14:49 -05:00
.text-icon {
padding-left: 0.5rem;
2024-02-26 17:43:35 -05:00
}
2024-11-03 09:17:08 -05:00
.tab-icon {
color: #f3bbae;
fill: #f3bbae;
padding-left: 0.25rem;
2024-11-11 15:37:08 -05:00
width: var(--primary-text-size);
2024-03-23 17:36:01 -04:00
}
2024-11-03 09:17:08 -05:00
a {
2024-11-11 15:37:08 -05:00
align-items: center;
2024-11-03 09:17:08 -05:00
display: flex;
justify-content: center;
2024-11-03 09:50:31 -05:00
}
.bullet-text a {
align-items: left;
2024-11-11 15:37:08 -05:00
justify-content: left;
}
2024-11-03 09:50:31 -05:00
.modal-window {
background-color: rgba(0, 0, 0, 0.45);
bottom: 0;
left: 0;
opacity: 0;
pointer-events: none;
2024-11-11 15:37:08 -05:00
position: fixed;
right: 0;
top: 0;
transition: background-color 0.3s ease;
2024-11-11 15:37:08 -05:00
visibility: hidden;
z-index: 999;
2024-11-03 09:50:31 -05:00
&:target {
opacity: 1;
pointer-events: auto;
2024-11-11 15:37:08 -05:00
visibility: visible;
2024-11-03 09:50:31 -05:00
}
&>div {
2024-11-11 15:37:08 -05:00
background: #241917;
left: 50%;
padding: 2em;
2024-11-03 09:50:31 -05:00
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
2024-11-11 15:37:08 -05:00
width: 400px;
2024-11-03 09:50:31 -05:00
}
header {
font-weight: bold;
}
h1 {
font-size: 150%;
margin: 0 0 15px;
}
}
.modal-close {
2024-11-11 15:37:08 -05:00
border-bottom: 4px solid #9a756c;
border-left: 4px solid #9a756c;
2024-11-03 09:50:31 -05:00
font-size: 18px;
2024-11-11 15:37:08 -05:00
line-height: 14px;
padding: 0.25rem 0.35rem;
2024-11-03 09:50:31 -05:00
position: absolute;
right: 0;
2024-11-11 15:37:08 -05:00
text-decoration: none;
2024-11-03 09:50:31 -05:00
top: 0;
&:hover {
background-color: #9a756c;
2024-11-11 15:37:08 -05:00
color: #241917 !important;
2024-11-03 09:50:31 -05:00
}
}
.modal-window {
&>div {
border: 4px solid #9a756c;
padding: 1rem;
}
}
.modal-window div:not(:last-of-type) {
margin-bottom: 15px;
}
.logo {
display: block;
2024-11-11 15:37:08 -05:00
max-width: 150px;
2024-11-03 09:50:31 -05:00
}
.btn {
background-color: #241917;
2024-11-03 09:54:00 -05:00
border-right: 4px solid #9a756c;
2024-11-11 15:37:08 -05:00
border-top: 4px solid #9a756c;
bottom: 0;
2024-11-11 15:37:08 -05:00
font-size: 10px;
left: 0;
2024-11-11 15:37:08 -05:00
padding: 0.35rem 0.75rem;
position: absolute;
text-decoration: none;
2024-11-03 09:50:31 -05:00
}
.btn:hover {
background-color: #9a756c;
color: #241917 !important;
font-weight: 700;
transition: background-color 0.3s ease;
2024-11-03 09:50:31 -05:00
}
.modal-text {
2024-11-11 15:37:08 -05:00
font-size: var(--primary-text-size);
2024-11-03 09:50:31 -05:00
line-height: 1.6;
margin: 0;
}
.modal-body {
padding-right: 1rem;
}
.crypto-address {
background-color: #241917;
border: 4px solid #9a756c;
2024-11-11 15:37:08 -05:00
color: #fff;
display: block;
font-size: 12px !important;
2024-11-03 09:50:31 -05:00
padding: 5px;
2024-11-11 15:37:08 -05:00
word-wrap: break-word;
2024-11-03 09:50:31 -05:00
}
.crypto-name {
font-size: 10px;
font-weight: 400;
}
#load-overlay {
display: none;
2024-11-03 09:17:08 -05:00
}