2019-12-10 03:27:34 +00:00
|
|
|
/* Styles for site header */
|
|
|
|
hgroup.site-header {
|
2019-12-10 03:35:39 +00:00
|
|
|
border-top: double;
|
|
|
|
border-bottom: thin solid;
|
|
|
|
margin-bottom: 0.5em;
|
2019-12-10 03:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hgroup.site-header h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hgroup.site-header h2 {
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1em;
|
|
|
|
font-style: italic;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2019-12-07 03:02:44 +00:00
|
|
|
img.u-photo {
|
|
|
|
max-width: 60px;
|
2019-12-07 04:22:47 +00:00
|
|
|
padding: 0.5em;
|
2019-12-07 03:02:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.glyph {
|
2019-12-07 04:09:28 +00:00
|
|
|
font-size: 1.25em;
|
2019-12-22 02:12:32 +00:00
|
|
|
margin-left: 1px;
|
|
|
|
margin-right: 1px;
|
2019-12-10 02:23:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav.site-menu {
|
|
|
|
border-top: thin solid;
|
|
|
|
border-bottom: double;
|
|
|
|
}
|
2019-12-10 03:58:54 +00:00
|
|
|
|
|
|
|
/* Styles for site footer */
|
|
|
|
p.copyright {
|
|
|
|
border-top: thin solid;
|
|
|
|
font-size: 0.8em;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.built-with {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
margin: 0;
|
2019-12-24 04:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img.profile.photo {
|
|
|
|
max-width: 60px;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
2019-12-31 17:17:43 +00:00
|
|
|
|
|
|
|
img.profile.photo.like {
|
|
|
|
max-width: 30px;
|
|
|
|
border-radius: 50%;
|
|
|
|
padding: 0.5em;
|
2020-08-03 19:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Styles for images and code fence blocks in content area */
|
|
|
|
|
|
|
|
pre {
|
|
|
|
overflow-x: auto;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
|
2020-08-14 03:36:18 +00:00
|
|
|
code {
|
|
|
|
color: darkred;
|
|
|
|
}
|
|
|
|
|
2020-08-03 19:42:45 +00:00
|
|
|
pre code {
|
|
|
|
display: block;
|
2020-08-14 03:36:18 +00:00
|
|
|
color: inherit;
|
2020-08-03 19:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
|
|
|
max-width: 100vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
figure img {
|
|
|
|
max-width: calc(100vw - 160px);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 922px) {
|
|
|
|
pre {
|
|
|
|
overflow-x: auto;
|
|
|
|
max-width: calc(100vw - 350px);
|
|
|
|
}
|
|
|
|
|
|
|
|
pre code {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
|
|
|
max-width: calc(100vw - 350px);
|
|
|
|
}
|
|
|
|
|
|
|
|
figure img {
|
|
|
|
max-width: calc(100vw - 510px);
|
|
|
|
}
|
2020-11-07 20:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Styes for tables */
|
|
|
|
table, th, td {
|
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.table-bordered,
|
|
|
|
table.table-bordered td,
|
|
|
|
table.table-bordered th {
|
|
|
|
border: 1px solid #dee2e6;
|
|
|
|
border-spacing: 2px;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|