2020-08-13 11:43:41 +02:00
|
|
|
.user-content {
|
|
|
|
padding: 3em;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.user-content .user-image {
|
|
|
|
padding: 1em;
|
|
|
|
margin-right: 2em;
|
|
|
|
min-width: var(--user-image-width);
|
|
|
|
width: var(--user-image-width);
|
|
|
|
height: var(--user-image-width);
|
|
|
|
max-height: var(--user-image-width);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: calc(var(--user-image-width) - 1em);
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-content-header {
|
|
|
|
margin-bottom: 2em;
|
2020-08-13 10:28:25 +02:00
|
|
|
}
|
|
|
|
|
2020-08-13 11:43:41 +02:00
|
|
|
.tag-list {
|
|
|
|
flex-direction: row;
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
.tag-list li {
|
|
|
|
font-size: .75em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-right: .75em;
|
|
|
|
padding: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.social-list {
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.social-list .follow-label {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: .75em;
|
|
|
|
margin-right: .5em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-13 11:43:41 +02:00
|
|
|
.user-social-item {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: -.25em;
|
|
|
|
}
|
|
|
|
.user-social-item .platform-icon {
|
|
|
|
--icon-width: 40px;
|
|
|
|
height: var(--icon-width);
|
|
|
|
width: var(--icon-width);
|
2020-08-22 00:55:52 +02:00
|
|
|
background-image: url(/img/social-icons.gif);
|
2020-08-13 11:43:41 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: calc(var(--imgCol) * var(--icon-width)) calc(var(--imgRow) * var(--icon-width));
|
|
|
|
transform: scale(.65);
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-social-item.use-default .platform-label {
|
|
|
|
font-size: .7em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
/*
|
|
|
|
EXTRA CUSTOM CONTENT STYLES
|
|
|
|
Assumes markup converted from markdown input.
|
|
|
|
*/
|
2020-08-13 11:43:41 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content {
|
2020-08-13 11:43:41 +02:00
|
|
|
padding: 1em 3em 3em 3em;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content ol {
|
2020-08-13 10:28:25 +02:00
|
|
|
list-style: decimal;
|
|
|
|
}
|
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content ul {
|
2020-08-13 10:28:25 +02:00
|
|
|
list-style: unset;
|
|
|
|
}
|
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h1,
|
|
|
|
#extra-user-content h2,
|
|
|
|
#extra-user-content h3,
|
|
|
|
#extra-user-content h4 {
|
2020-08-13 10:28:25 +02:00
|
|
|
color: #111111;
|
2020-08-22 00:55:52 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h1,
|
|
|
|
#extra-user-content h2,
|
|
|
|
#extra-user-content h3,
|
|
|
|
#extra-user-content h4,
|
|
|
|
#extra-user-content h5,
|
|
|
|
#extra-user-content p {
|
2020-08-13 10:28:25 +02:00
|
|
|
margin-bottom: 24px;
|
2020-08-22 00:55:52 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h1 {
|
|
|
|
font-size: 48px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h2 {
|
2020-08-13 10:28:25 +02:00
|
|
|
font-size: 36px;
|
2020-08-22 00:55:52 +02:00
|
|
|
margin: 24px 0 6px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h3 {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h4 {
|
|
|
|
font-size: 21px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content h5 {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content a {
|
2020-08-13 10:28:25 +02:00
|
|
|
color: #0099ff;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-08-22 00:55:52 +02:00
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content ul, #extra-user-content ol {
|
2020-08-13 10:28:25 +02:00
|
|
|
padding: 0;
|
2020-08-22 00:55:52 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content li {
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content li ul, #extra-user-content li ul {
|
2020-08-13 10:28:25 +02:00
|
|
|
margin-left: 24px; }
|
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content p, #extra-user-content ul, #extra-user-content ol {
|
2020-08-13 10:28:25 +02:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#extra-user-content pre {
|
2020-08-13 10:28:25 +02:00
|
|
|
padding: 0px 24px;
|
|
|
|
max-width: 800px;
|
2020-08-22 00:55:52 +02:00
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content code {
|
2020-08-13 10:28:25 +02:00
|
|
|
font-family: Consolas, Monaco, Andale Mono, monospace;
|
|
|
|
line-height: 1.5;
|
2020-08-22 00:55:52 +02:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content aside {
|
2020-08-13 10:28:25 +02:00
|
|
|
display: block;
|
|
|
|
float: right;
|
2020-08-22 00:55:52 +02:00
|
|
|
width: 390px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content blockquote {
|
2020-08-13 10:28:25 +02:00
|
|
|
margin: 1em 2em;
|
2020-08-22 00:55:52 +02:00
|
|
|
max-width: 476px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content blockquote p {
|
2020-08-13 10:28:25 +02:00
|
|
|
color: #666;
|
2020-08-22 00:55:52 +02:00
|
|
|
max-width: 460px;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content hr {
|
2020-08-13 10:28:25 +02:00
|
|
|
width: 540px;
|
|
|
|
text-align: left;
|
|
|
|
margin: 0 auto 0 0;
|
2020-08-22 00:55:52 +02:00
|
|
|
color: #999;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content table {
|
2020-08-13 10:28:25 +02:00
|
|
|
border-collapse: collapse;
|
|
|
|
margin: 1em 1em;
|
2020-08-22 00:55:52 +02:00
|
|
|
border: 1px solid #CCC;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content table thead {
|
|
|
|
background-color: #EEE;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content table thead td {
|
|
|
|
color: #666;
|
|
|
|
}
|
2020-08-13 10:28:25 +02:00
|
|
|
|
2020-08-22 00:55:52 +02:00
|
|
|
#extra-user-content table td {
|
2020-08-13 10:28:25 +02:00
|
|
|
padding: 0.5em 1em;
|
2020-08-22 00:55:52 +02:00
|
|
|
border: 1px solid #CCC;
|
|
|
|
}
|