mirror of https://github.com/jkjoy/hugoblog.git
335 lines
8.1 KiB
SCSS
335 lines
8.1 KiB
SCSS
.graph {
|
|
color: var(--farallon-text-color);
|
|
word-break: break-all;
|
|
|
|
code {
|
|
background-color: var(--farallon-background-gray);
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
border-radius: 4px;
|
|
font-size: 75%;
|
|
padding: 2px 4px;
|
|
word-break: break-word;
|
|
color: var(--farallon-text-light);
|
|
}
|
|
|
|
pre {
|
|
word-break: break-all;
|
|
white-space: break-spaces;
|
|
background-color: var(--farallon-background-gray);
|
|
padding: 20px 30px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
border: 1px solid var(--farallon-border-color);
|
|
line-height: 1.4;
|
|
color: var(--farallon-text-light);
|
|
margin-left: -3.5%;
|
|
margin-right: -3.5%;
|
|
code {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
font-size: 100%;
|
|
}
|
|
// font-family: source-code-pro, Menlo, Monaco, "Courier New", Courier,
|
|
// monospace;
|
|
}
|
|
&--mixtapeEmbed {
|
|
a {
|
|
text-decoration: none !important;
|
|
box-shadow: none !important;
|
|
&:hover {
|
|
color: inherit !important;
|
|
}
|
|
}
|
|
margin-bottom: 25px;
|
|
border: 1px solid var(--farallon-border-color);
|
|
border-radius: 4px;
|
|
.mixtapeImage {
|
|
width: 120px;
|
|
height: 120px;
|
|
background-size: cover;
|
|
flex: 0 0 auto;
|
|
margin-left: 30px;
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
.mixtapeContent {
|
|
padding: 0 20px;
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
.markup--em {
|
|
font-style: normal;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
color: var(--farallon-text-light);
|
|
}
|
|
.markup--strong {
|
|
font-weight: 700;
|
|
line-height: 1.3;
|
|
margin-bottom: 5px;
|
|
&:hover {
|
|
color: var(--farallon-hover-color);
|
|
}
|
|
}
|
|
}
|
|
display: flex;
|
|
}
|
|
font-size: 16px;
|
|
p {
|
|
margin-bottom: 25px;
|
|
hyphens: auto;
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
color: var(--farallon-text-light);
|
|
border-color: var(--farallon-border-color-light);
|
|
margin-left: -3.5%;
|
|
margin-right: -3.5%;
|
|
margin-bottom: 35px;
|
|
background-color: var(--farallon-background-gray);
|
|
background: linear-gradient(
|
|
89.99999999999999deg,
|
|
rgba(255, 233, 244, 0.3) 0%,
|
|
rgba(234, 243, 255, 0.5) 100%
|
|
);
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
p {
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
box-shadow: inset 0 -3px 0 var(--farallon-main-color);
|
|
transition: 0.2s;
|
|
&[href*="jpeg"],
|
|
&[href*="JPEG"],
|
|
&[href*="jpg"],
|
|
&[href*="png"],
|
|
&[href*="PNG"],
|
|
&[href*="JPG"],
|
|
&[href*="gif"] {
|
|
box-shadow: none;
|
|
&:hover {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
&:hover {
|
|
//color: var(--main-hover-color);
|
|
box-shadow: inset 0 -5px 0 var(--farallon-hover-color);
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 15px;
|
|
margin-top: 30px;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: var(--farallon-text-light);
|
|
line-height: 1.3;
|
|
& + h3 {
|
|
margin-top: 15px;
|
|
}
|
|
position: relative;
|
|
:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0.5em;
|
|
bottom: -2px;
|
|
left: -10px;
|
|
width: 3.4em;
|
|
z-index: -1;
|
|
background: var(--farallon-hover-color);
|
|
opacity: 0.3;
|
|
transform: skew(-35deg);
|
|
transition: opacity 0.2s ease;
|
|
border-radius: 3px 8px 10px 6px;
|
|
}
|
|
|
|
// &:target {
|
|
// border-radius: 11px;
|
|
// animation: fadeOut-headings 0.4s;
|
|
// animation-fill-mode: forwards;
|
|
// color: #fff;
|
|
// }
|
|
}
|
|
|
|
h3 {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: var(--farallon-text-gray);
|
|
margin-bottom: 10px;
|
|
margin-top: 30px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: var(--farallon-text-gray-lightest);
|
|
margin-bottom: 10px;
|
|
margin-top: 30px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
text-align: center;
|
|
font-size: 32px;
|
|
height: auto;
|
|
margin-top: 0;
|
|
margin-bottom: 15px;
|
|
&:before {
|
|
content: "...";
|
|
letter-spacing: 0.6em;
|
|
text-indent: 0.6em;
|
|
}
|
|
}
|
|
|
|
b,
|
|
strong {
|
|
font-weight: 700;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
margin-bottom: 25px;
|
|
padding-left: 5px;
|
|
li {
|
|
margin-left: 25px;
|
|
margin-bottom: 5px;
|
|
&:before {
|
|
content: "•";
|
|
box-sizing: border-box;
|
|
font-size: 18px;
|
|
margin-left: -35px;
|
|
padding-right: 10px;
|
|
display: inline-block;
|
|
text-align: right;
|
|
width: 32px;
|
|
color: var(--farallon-main-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
ol {
|
|
counter-reset: item;
|
|
margin-left: 30px;
|
|
& > li:before {
|
|
content: counter(item);
|
|
counter-increment: item;
|
|
font-size: 11.4px;
|
|
font-weight: 700;
|
|
align-items: center;
|
|
background-color: rgba(195, 218, 254, 0.43);
|
|
border: 0 solid #999;
|
|
border-radius: 9999px;
|
|
box-sizing: border-box;
|
|
color: rgba(85, 134, 210, 0.8);
|
|
display: inline-flex;
|
|
height: 19px;
|
|
justify-content: center;
|
|
margin-left: -44px !important;
|
|
margin-right: 14px;
|
|
margin-top: 4px;
|
|
transform: translateY(-1px);
|
|
width: 30px;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.grap--figure,
|
|
.colonel--figure {
|
|
margin: 0 -50px 25px;
|
|
position: relative;
|
|
img {
|
|
border-radius: 4px;
|
|
}
|
|
.imageCaption {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
position: absolute;
|
|
bottom: 12px;
|
|
left: 12px;
|
|
color: #fff;
|
|
background-color: rgba(18, 18, 18, 0.8);
|
|
border-radius: 5px;
|
|
padding: 8px 10px;
|
|
}
|
|
line-height: 1;
|
|
}
|
|
|
|
@media (max-width: 820px) {
|
|
.graph {
|
|
blockquote {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
padding-top: 20px;
|
|
background-position: left 10px top 0;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
pre {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
h2,
|
|
h3 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0px;
|
|
li {
|
|
line-height: 1.6;
|
|
}
|
|
}
|
|
|
|
&--mixtapeEmbed {
|
|
margin-bottom: 25px;
|
|
padding: 15px 0;
|
|
border: 1px solid var(--farallon-border-color);
|
|
border-radius: 4px;
|
|
.mixtapeImage {
|
|
display: none;
|
|
}
|
|
.mixtapeContent {
|
|
padding: 0 15px;
|
|
.markup--em {
|
|
font-style: normal;
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
color: var(--farallon-text-light);
|
|
}
|
|
.markup--strong {
|
|
line-height: 1.3;
|
|
margin-bottom: 5px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
display: flex;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
.grap--figure,
|
|
.colonel--figure {
|
|
margin: 0 0 20px;
|
|
margin-left: -3.5%;
|
|
margin-right: -3.5%;
|
|
img {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
}
|