mirror of
https://github.com/tcsenpai/obsidiangarden_netlify.git
synced 2025-06-06 04:35:20 +00:00
83 lines
1.2 KiB
SCSS
83 lines
1.2 KiB
SCSS
/***
|
|
* DO NOT ADD/MODIFY STYLING HERE. IT WILL BE OVERWRITTEN IF YOU UPDATE THE TEMPLATE VERSION.
|
|
* MODIFY THE custom-style.scss FILE INSTEAD.
|
|
***/
|
|
|
|
h1 {
|
|
color: #FFEF60;
|
|
}
|
|
|
|
h2 {
|
|
color: #F06449;
|
|
}
|
|
|
|
h3 {
|
|
color: #D4FCC3;
|
|
}
|
|
|
|
h4 {
|
|
color: #72DCFF;
|
|
}
|
|
|
|
.centered {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
|
|
.theme-dark {
|
|
background: rgb(32, 31, 31);
|
|
color: white;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.theme-light {
|
|
background: white;
|
|
color: black;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
color: rgb(97, 186, 245);
|
|
}
|
|
|
|
.font-bg {
|
|
font-size: 92px;
|
|
}
|
|
|
|
blockquote {
|
|
background: #ffffff17;
|
|
border-left: 10px solid #C1DBE3;
|
|
margin: 1.5em 10px;
|
|
padding: 0.5em 10px;
|
|
quotes: "\201C""\201D""\2018""\2019";
|
|
}
|
|
|
|
blockquote:before {
|
|
color: #ccc;
|
|
content: open-quote;
|
|
font-size: 4em;
|
|
line-height: 0.1em;
|
|
margin-right: 0.1em;
|
|
vertical-align: -0.4em;
|
|
}
|
|
|
|
blockquote p {
|
|
display: inline;
|
|
}
|
|
|
|
.external-link::after {
|
|
content: 'U+1F855';
|
|
position: absolute;
|
|
top: -4px;
|
|
right: -7px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.external-link {
|
|
padding-right: 10px;
|
|
position: relative;
|
|
} |