bobatheme/assets/css/bobastyle.css

135 lines
1.5 KiB
CSS
Raw Normal View History

2021-09-30 09:54:30 -05:00
/* Layout */
2021-10-01 14:12:39 -05:00
.content, .footer {
2021-09-30 09:54:30 -05:00
padding: 20px;
}
2021-10-01 14:12:39 -05:00
.header a, #navbar {
padding-left: 20px;
2021-09-30 09:54:30 -05:00
}
2021-10-01 14:12:39 -05:00
.navbar-item {
margin-right: 5px;
2021-09-30 17:56:55 -05:00
}
2021-10-02 16:22:52 -05:00
.post {
padding-bottom: 20px;
}
.post-title, .post-title h1 {
margin-bottom: 10px;
}
.post-description {
padding-top: 10px;
}
.readmore {
padding-top: 5px;
}
.tags {
padding-left: 5px;
}
2021-09-25 20:52:01 -05:00
body {
2021-10-01 18:29:49 -05:00
margin: auto;
2021-10-01 14:12:39 -05:00
max-width: 720px;
2021-09-25 20:52:01 -05:00
}
2021-09-30 09:54:30 -05:00
* {
box-sizing: border-box;
2021-09-25 20:52:01 -05:00
}
2021-09-30 09:54:30 -05:00
/* Styling */
2021-10-02 16:22:52 -05:00
#navbar h2 {
color: inherit;
text-decoration: inherit;
2021-09-30 18:12:52 -05:00
}
2021-10-02 20:20:44 -05:00
.header a, .section-header a {
2021-10-02 16:22:52 -05:00
color: inherit;
}
.post-title a {
2021-10-01 14:12:39 -05:00
color: inherit;
text-decoration: inherit;
2021-09-25 20:52:01 -05:00
}
2021-09-30 09:54:30 -05:00
body {
2021-10-02 16:22:52 -05:00
background-color: #111;
2021-10-01 14:12:39 -05:00
color: lightgray;
2021-09-30 09:54:30 -05:00
font-family: sans-serif;
}
2021-10-02 16:22:52 -05:00
2021-09-30 09:54:30 -05:00
a {
color: #4da6ff;
2021-10-02 16:22:52 -05:00
text-decoration: inherit;
}
a:hover {
text-decoration: underline;
2021-09-30 09:54:30 -05:00
}
2021-10-02 16:22:52 -05:00
2021-09-30 09:54:30 -05:00
blockquote {
border-left: 5px solid #333;
2021-09-30 09:54:30 -05:00
padding-left: 10px;
}
hr {
color: #444;
}
/* Breadcrumb Navigation */
ul.breadcrumb {
padding 10px 16px;
list-style: none;
}
ul.breadcrumb li {
display: inline;
}
ul.breadcrumb li+li:before {
padding: 8px;
content: "/\00a0";
}
ul.breadcrumb li.active a {
color: inherit;
}
2021-10-02 19:26:33 -05:00
/* 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;
}