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

98 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2024-08-06 22:42:14 +00:00
::-webkit-scrollbar {
width: 5px;
background: black;
}
::-webkit-scrollbar-thumb {
background: white;
}
2024-09-28 18:24:40 +00:00
code {
background: black !important;
color: white !important;
2024-07-24 19:30:19 +00:00
}
2024-09-28 17:48:34 +00:00
pre code {
display: block;
}
2024-07-24 19:30:19 +00:00
.post-title {
font-size: 200px;
}
.container {
2024-07-24 19:30:19 +00:00
margin: auto !important;
2024-09-28 18:24:40 +00:00
background: #e8e6e6 !important;
2024-07-29 12:54:31 +00:00
padding: 20px 20px;
}
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;
2024-09-28 18:24:40 +00:00
border: 1px solid #303030;
2024-07-29 12:54:31 +00:00
}
.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-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-07-29 12:54:31 +00:00
.menu li a {
text-decoration: underline;
font-weight: bold;
}
.title {
2024-07-24 19:30:19 +00:00
text-decoration: underline;
}
code {
background: #333333;
2024-09-28 18:24:40 +00:00
color: white;
padding: 2px;
}
img {
width: 100%;
}
2024-09-28 17:48:34 +00:00