mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-14 20:35:58 -06:00
200 lines
2.4 KiB
CSS
200 lines
2.4 KiB
CSS
/* bobatheme is available under the MIT license at
|
|
* https://github.com/BBaoVanC/bobatheme.
|
|
*/
|
|
|
|
|
|
/* Post layout (in list pages) */
|
|
.post {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.post-title {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.post-title a {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
.post-meta-item {
|
|
margin-right: 5px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.post-metadata {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.post-media {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.post-description {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.readmore {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
|
|
|
|
/* Header formatting (website title and article section headers) */
|
|
.top {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.header a, .section-header a {
|
|
color: inherit;
|
|
}
|
|
|
|
.section-header {
|
|
position: relative;
|
|
}
|
|
|
|
.section-header a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.section-header-link {
|
|
position: absolute;
|
|
left: -20px;
|
|
}
|
|
|
|
.section-header-link svg {
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
|
|
|
|
|
|
/* Content formatting */
|
|
#table-of-contents h2 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.content {
|
|
padding: 20px;
|
|
}
|
|
|
|
|
|
|
|
/* Navbar formatting */
|
|
#navbar h2 {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
.navbar-item {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
|
|
|
|
/* Basic elements */
|
|
body {
|
|
background-color: #111;
|
|
color: lightgray;
|
|
font-family: "Open Sans", "Noto Sans", sans-serif;
|
|
margin: auto;
|
|
max-width: 720px;
|
|
}
|
|
|
|
img, video {
|
|
max-width: 100%;
|
|
}
|
|
|
|
img:not(.noborder), video:not(.noborder) {
|
|
padding: 5px;
|
|
border: 5px solid #1b5b9b;
|
|
}
|
|
|
|
a {
|
|
color: #4da6ff;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 5px solid #333;
|
|
}
|
|
|
|
blockquote p {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
hr {
|
|
border-color: #444;
|
|
}
|
|
|
|
pre {
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
pre, code {
|
|
background-color: #282828;
|
|
padding: 2px 4px;
|
|
border-radius: 5px;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
|
|
/* Icons */
|
|
.icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
color: lightgray;
|
|
text-align: center;
|
|
display: inline;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
h1 svg.icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
|
|
|
|
/* Pagination */
|
|
.pagination {
|
|
list-style: none;
|
|
text-align: center;
|
|
}
|
|
|
|
.page-item {
|
|
display: inline;
|
|
}
|
|
|
|
.page-link {
|
|
padding: 8px 16px;
|
|
border-radius: 5px;
|
|
color: lightgray;
|
|
}
|
|
|
|
.page-item.active .page-link {
|
|
background-color: #163b64;
|
|
color: inherit;
|
|
}
|
|
|
|
.page-item.active .page-link:hover {
|
|
background-color: #2b72c0;
|
|
color: white;
|
|
}
|
|
|
|
.page-link:hover {
|
|
background-color: #444;
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|