2022-02-07 04:48:44 +04:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto Condensed';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local('RobotoCondensed'), local('RobotoCondensed-Regular'),
|
2022-02-08 19:00:55 +04:00
|
|
|
url(/assets/fonts/RobotoCondensed-Regular.ttf); }
|
2022-02-07 04:48:44 +04:00
|
|
|
|
2022-02-09 00:21:25 +04:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Share Tech Mono';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local('ShareTechMono'), local('ShareTechMono-Regular'),
|
2022-02-12 04:56:18 +04:00
|
|
|
url(/assets/fonts/ShareTechMono-Regular.ttf); }
|
2022-02-09 00:21:25 +04:00
|
|
|
|
2022-02-07 04:48:44 +04:00
|
|
|
:root {
|
|
|
|
--background-color: #0a0a0a;
|
|
|
|
--primary-color: #cd2682;
|
|
|
|
--secondary-color: #9f2b68;
|
2022-02-11 02:56:14 +04:00
|
|
|
--text-color: #f5f5f5;
|
2022-02-07 04:48:44 +04:00
|
|
|
--text-indent: 1.6rem;
|
|
|
|
scrollbar-color: var(--primary-color) var(--background-color); }
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--background-color: #f5f5f5;
|
|
|
|
--primary-color: #9f2b68;
|
|
|
|
--secondary-color: #cd2682;
|
|
|
|
--text-color: #0a0a0a; } }
|
|
|
|
|
|
|
|
* { margin: 0; }
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background-color: var(--secondary-color);
|
|
|
|
color: var(--background-color); }
|
|
|
|
|
|
|
|
a,
|
|
|
|
button {
|
|
|
|
color: var(--primary-color);
|
|
|
|
text-decoration: none; }
|
|
|
|
|
|
|
|
a:hover,
|
2022-02-11 02:56:14 +04:00
|
|
|
button:hover,
|
|
|
|
input[type="file"]::file-selector-button:hover {
|
2022-02-07 04:48:44 +04:00
|
|
|
color: var(--secondary-color);
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline dotted;
|
|
|
|
transition: .5s; }
|
|
|
|
|
2022-02-11 02:56:14 +04:00
|
|
|
input[type="file"] {
|
|
|
|
color: var(--text-color);
|
|
|
|
font: inherit; }
|
|
|
|
|
|
|
|
input[type="file"]::file-selector-button,
|
2022-02-07 04:48:44 +04:00
|
|
|
button {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2022-02-11 02:56:14 +04:00
|
|
|
color: var(--primary-color);
|
2022-02-07 04:48:44 +04:00
|
|
|
font: inherit;
|
2022-02-11 02:56:14 +04:00
|
|
|
margin-left: .3rem;
|
2022-02-07 04:48:44 +04:00
|
|
|
padding: 0; }
|
|
|
|
|
2022-07-01 03:59:37 +04:00
|
|
|
input[type="text"] {
|
|
|
|
background-color: var(--background-color);
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid var(--primary-color);
|
|
|
|
color: var(--text-color);
|
|
|
|
font: inherit; }
|
|
|
|
|
2022-02-07 04:48:44 +04:00
|
|
|
p {
|
|
|
|
text-align: justify;
|
|
|
|
line-height: var(--text-indent);
|
|
|
|
text-indent: var(--text-indent); }
|
|
|
|
|
|
|
|
p:not(:last-child) { margin-bottom: .1rem; }
|
|
|
|
|
2022-02-09 00:21:25 +04:00
|
|
|
code {
|
|
|
|
font-family: 'Share Tech Mono';
|
|
|
|
font-size: 1.1rem;
|
|
|
|
letter-spacing: -1px; }
|
|
|
|
|
2022-02-07 04:48:44 +04:00
|
|
|
h1,
|
|
|
|
h2 {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
font-variant: small-caps;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 1rem; }
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
margin: 1rem 0; }
|
|
|
|
|
|
|
|
small { font-size: .8rem; }
|
|
|
|
|
2022-02-08 04:24:04 +04:00
|
|
|
progress {
|
2022-02-11 02:56:14 +04:00
|
|
|
background-color: var(--secondary-color);
|
2022-02-08 04:24:04 +04:00
|
|
|
border: none;
|
|
|
|
color: var(--primary-color);
|
|
|
|
height: 1.1rem;
|
2022-02-11 02:56:14 +04:00
|
|
|
width: 30%; }
|
2022-02-08 04:24:04 +04:00
|
|
|
|
2023-05-14 01:19:45 +04:00
|
|
|
progress::-moz-progress-bar { background-color: var(--primary-color); }
|
2022-02-08 04:24:04 +04:00
|
|
|
|
|
|
|
.center { text-align: center; }
|
|
|
|
|
2022-02-07 04:48:44 +04:00
|
|
|
html { margin-left: calc(100vw - 100%); }
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--text-color);
|
|
|
|
font-family: 'Roboto Condensed', Roboto, sans-serif;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 960px;
|
|
|
|
width: 98%; }
|
|
|
|
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between; }
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
display: block;
|
|
|
|
width: 360px; }
|
|
|
|
|
|
|
|
#logo text { fill: var(--text-color); }
|
|
|
|
|
|
|
|
#logo .logo {
|
|
|
|
font-size: 2rem;
|
|
|
|
font-variant-caps: small-caps;
|
|
|
|
font-weight: bold; }
|
|
|
|
|
|
|
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
|
|
|
#logo .logo { font-size: 2.082rem; } }
|
|
|
|
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
#logo .logo { font-size: 2rem; } }
|
|
|
|
|
|
|
|
#logo .under { font-size: .88rem; }
|
|
|
|
|
|
|
|
nav { margin-top: .5rem; }
|
|
|
|
|
|
|
|
nav a { font-variant: small-caps; }
|
|
|
|
|
|
|
|
nav h1 {
|
|
|
|
color: var(--secondary-color);
|
|
|
|
margin: 0; }
|
|
|
|
|
|
|
|
section { margin-top: 1rem; }
|
|
|
|
|
2023-05-27 19:32:44 +04:00
|
|
|
#occupied-space div span { margin: 0 .2rem; }
|
2022-02-07 04:48:44 +04:00
|
|
|
|
|
|
|
footer {
|
|
|
|
font-size: .8rem;
|
|
|
|
text-align: center;
|
|
|
|
padding: 1rem 0; }
|
|
|
|
|
|
|
|
@media screen and (max-width: 640px) {
|
|
|
|
header { display: block; }
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 100%; }
|
|
|
|
|
|
|
|
nav {
|
|
|
|
width: 100%;
|
2022-07-01 04:08:12 +04:00
|
|
|
text-align: center; }
|
2023-05-14 01:19:45 +04:00
|
|
|
|
2022-07-01 04:08:12 +04:00
|
|
|
input[type="text"] { width: 100%; } }
|