blog/themes/minth/static/css/global.css

100 lines
1.4 KiB
CSS

::-webkit-scrollbar {
width: 5px;
background: black;
}
::-webkit-scrollbar-thumb {
background: white;
}
* {
color: white;
}
pre code {
display: block;
background: black;
}
.post-title {
font-size: 200px;
}
.container {
margin: auto !important;
background: #0d0d0d !important;
padding: 20px 20px;
}
.header {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.header pre {
color: #6d6994;
text-shadow: 0px 0px 10px #685aed;
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;
}
}
.menu li {
display: inline-block;
margin: 0px !important;
padding: 0px 10px;
font-size: 20px;
}
.menu li a {
text-decoration: underline;
font-weight: bold;
}
.title {
text-decoration: underline;
}
code {
background: #333333;
padding: 2px;
}
img {
width: 100%;
}
.code {
background: #ffffff !important;
color: black !important;
}