2024-08-06 22:42:14 +00:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 5px;
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
2024-03-26 21:51:04 +00:00
|
|
|
* {
|
2024-07-29 12:54:31 +00:00
|
|
|
color: white;
|
2024-07-24 19:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.post-title {
|
|
|
|
font-size: 200px;
|
2024-03-26 21:51:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2024-07-24 19:30:19 +00:00
|
|
|
margin: auto !important;
|
2024-07-29 12:54:31 +00:00
|
|
|
background: #0d0d0d !important;
|
|
|
|
padding: 20px 20px;
|
2024-03-26 21:51:04 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 19:30:19 +00:00
|
|
|
.header {
|
|
|
|
display: flex;
|
2024-07-29 12:54:31 +00:00
|
|
|
flex-direction: column;
|
2024-07-24 19:30:19 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2024-07-29 12:54:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header pre {
|
2024-08-13 12:21:51 +00:00
|
|
|
color: #6d6994;
|
|
|
|
text-shadow: 0px 0px 10px #685aed;
|
2024-07-29 12:54:31 +00:00
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 800px) {
|
|
|
|
.container {
|
|
|
|
max-width: 800px;
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
|
|
|
.header .header-bg {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
.header .header-sm {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 800px) {
|
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.header .header-bg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.header .header-sm {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2024-03-26 21:51:04 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 19:30:19 +00:00
|
|
|
.menu li {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0px !important;
|
|
|
|
padding: 0px 10px;
|
2024-07-29 12:54:31 +00:00
|
|
|
font-size: 20px;
|
2024-03-26 21:51:04 +00:00
|
|
|
}
|
|
|
|
|
2024-07-29 12:54:31 +00:00
|
|
|
.menu li a {
|
|
|
|
text-decoration: underline;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-03-26 21:51:04 +00:00
|
|
|
.title {
|
2024-07-24 19:30:19 +00:00
|
|
|
text-decoration: underline;
|
2024-03-26 21:51:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
background: #333333;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
}
|