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;
|
|
|
|
}
|
|
|
|
|
2021-10-02 16:35:24 -05:00
|
|
|
.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 16:22:52 -05:00
|
|
|
.header a {
|
|
|
|
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-29 21:33:23 -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-09-29 21:33:23 -05:00
|
|
|
}
|
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 #222;
|
|
|
|
padding-left: 10px;
|
2021-09-29 21:33:23 -05:00
|
|
|
}
|
2021-10-01 20:54:18 -05:00
|
|
|
|
|
|
|
/* Breadcrumb Navigation */
|
|
|
|
ul.breadcrumb {
|
|
|
|
padding 10px 16px;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.breadcrumb li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.breadcrumb li a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.breadcrumb li+li:before {
|
|
|
|
padding: 8px;
|
|
|
|
content: "/\00a0";
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.breadcrumb li.active a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|