2023-10-06 18:36:58 +03:00
|
|
|
:root {
|
2023-10-29 00:03:22 +03:00
|
|
|
--af: #cdc4c4;
|
2023-10-06 18:36:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-10-24 03:45:59 +03:00
|
|
|
html {
|
2023-10-29 00:03:22 +03:00
|
|
|
background-image: -o-radial-gradient(
|
|
|
|
circle,
|
|
|
|
rgba(249, 240, 194, 0.15) 1px,
|
|
|
|
transparent 1px
|
|
|
|
);
|
2023-10-24 03:45:59 +03:00
|
|
|
background-image: radial-gradient(
|
|
|
|
circle,
|
2023-10-25 00:20:07 +03:00
|
|
|
rgba(249, 240, 194, 0.15) 1px,
|
2023-10-24 03:45:59 +03:00
|
|
|
transparent 1px
|
|
|
|
);
|
|
|
|
background-size: 20px 20px;
|
2023-10-25 00:51:05 +03:00
|
|
|
background-position: center center;
|
2023-10-24 03:45:59 +03:00
|
|
|
}
|
|
|
|
|
2023-10-06 18:36:58 +03:00
|
|
|
body {
|
2023-10-29 00:03:22 +03:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: flex;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-ms-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
padding: 2em;
|
|
|
|
|
2023-10-06 18:36:58 +03:00
|
|
|
margin: auto;
|
|
|
|
max-width: 1100px;
|
|
|
|
min-height: 100vh;
|
|
|
|
text-rendering: optimizeSpeed;
|
|
|
|
}
|
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
main {
|
|
|
|
-webkit-box-flex: 1;
|
|
|
|
-ms-flex: 1;
|
|
|
|
flex: 1;
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2023-10-06 18:36:58 +03:00
|
|
|
text-align: center;
|
2023-10-29 00:03:22 +03:00
|
|
|
-webkit-filter: brightness(75%);
|
|
|
|
filter: brightness(75%);
|
2023-10-06 18:36:58 +03:00
|
|
|
}
|
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
br {
|
|
|
|
margin-bottom: 0.2em;
|
2023-10-06 18:36:58 +03:00
|
|
|
}
|
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
hr {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2023-10-06 18:36:58 +03:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
#blist {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-bottom: 0.3em;
|
2023-10-06 18:36:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
font-style: italic;
|
2023-10-29 00:03:22 +03:00
|
|
|
color: var(--af);
|
2023-10-06 18:36:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nav img {
|
2023-10-29 00:03:22 +03:00
|
|
|
height: 1em;
|
2023-10-06 18:36:58 +03:00
|
|
|
}
|
2023-10-08 21:19:31 +03:00
|
|
|
|
|
|
|
code:not(pre code),
|
2023-10-29 00:03:22 +03:00
|
|
|
time,
|
|
|
|
pre {
|
2023-10-08 21:19:31 +03:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 0.2em;
|
|
|
|
}
|