123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- /* THEME SPECIFIC STYLES */
- .contents {
- color: mc('grey', '800');
- padding-bottom: 50px;
- @at-root .theme--dark & {
- color: mc('grey', '300');
- a {
- color: mc('blue', '300');
- }
- }
- // ---------------------------------
- // HEADERS
- // ---------------------------------
- h1, h2, h3, h4, h5, h6 {
- position: relative;
- &:hover {
- .toc-anchor {
- display: block;
- }
- }
- .toc-anchor {
- display: none;
- position: absolute;
- right: 1rem;
- bottom: .5rem;
- font-size: 1.25rem;
- text-decoration: none;
- color: mc('grey', '500');
- }
- }
- h1 {
- padding-left: 24px;
- color: mc('blue', '800');
- margin-top: 2rem;
- position: relative;
- @at-root .theme--dark & {
- color: mc('grey', '400');
- }
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 2px;
- background: linear-gradient(to right, mc('theme', 'primary'), rgba(mc('theme', 'primary'), 0));
- @at-root .theme--dark & {
- background: linear-gradient(to right, mc('grey', '600'), rgba(mc('grey', '600'), 0));
- }
- }
- & + h2, & + h3 {
- margin-top: 8px;
- }
- }
- h2 {
- margin-left: 24px;
- padding: 8px 0 0 0;
- color: mc('grey', '800');
- position: relative;
- margin-top: 1rem;
- @at-root .theme--dark & {
- color: mc('grey', '500');
- }
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: linear-gradient(to right, mc('grey', '700'), rgba(mc('grey', '700'), 0));
- @at-root .theme--dark & {
- background: linear-gradient(to right, mc('grey', '300'), rgba(mc('grey', '700'), 0));
- }
- }
- & + h3 {
- margin-top: 8px;
- }
- }
- h3 {
- margin-left: 24px;
- padding: 8px 0 0 0;
- color: mc('grey', '700');
- position: relative;
- @at-root .theme--dark & {
- color: mc('grey', '600');
- }
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: linear-gradient(to right, mc('grey', '500'), rgba(mc('grey', '500'), 0));
- }
- }
- // ---------------------------------
- // PARAGRAPHS
- // ---------------------------------
- p {
- padding: 1rem 24px 0 24px;
- margin: 0;
- text-align: justify;
- }
- hr {
- margin: 1rem;
- height: 1px;
- border: none;
- background-color: mc('grey', '400');
- @at-root .theme--dark & {
- background-color: mc('grey', '700');
- }
- }
- .emoji {
- height: 1.25em;
- margin: 0 1px -4px;
- }
- blockquote {
- padding: 0 0 1rem 0;
- border: 1px solid mc('blue', '500');
- border-radius: .5rem;
- margin: 1rem;
- > p:first-child .emoji {
- margin-right: .5rem;
- }
- &.is-info {
- background-color: mc('blue', '50');
- background-image: radial-gradient(ellipse at top, mc('blue', '50'), lighten(mc('blue', '50'), 5%));
- border-color: mc('blue', '100');
- box-shadow: 0 0 2px 0 mc('blue', '100');
- code {
- background-color: mc('blue', '50');
- color: mc('blue', '800');
- }
- @at-root .theme--dark & {
- background-color: mc('blue', '900');
- background-image: radial-gradient(ellipse at top, mc('blue', '900'), darken(mc('blue', '900'), 5%));
- border-color: mc('blue', '500');
- box-shadow: 0 0 2px 0 mc('grey', '900');
- }
- }
- &.is-warning {
- background-color: mc('orange', '50');
- background-image: radial-gradient(ellipse at top, mc('orange', '50'), lighten(mc('orange', '50'), 5%));
- border-color: mc('orange', '100');
- box-shadow: 0 0 2px 0 mc('orange', '100');
- code {
- background-color: mc('orange', '50');
- color: mc('orange', '800');
- }
- @at-root .theme--dark & {
- background-color: mc('orange', '900');
- background-image: radial-gradient(ellipse at top, mc('orange', '900'), darken(mc('orange', '900'), 5%));
- border-color: mc('orange', '500');
- box-shadow: 0 0 2px 0 mc('grey', '900');
- }
- }
- &.is-danger {
- background-color: mc('red', '50');
- background-image: radial-gradient(ellipse at top, mc('red', '50'), lighten(mc('red', '50'), 5%));
- border-color: mc('red', '100');
- box-shadow: 0 0 2px 0 mc('red', '100');
- code {
- background-color: mc('red', '50');
- color: mc('red', '800');
- }
- @at-root .theme--dark & {
- background-color: mc('red', '900');
- background-image: radial-gradient(ellipse at top, mc('red', '900'), darken(mc('red', '900'), 5%));
- border-color: mc('red', '500');
- box-shadow: 0 0 2px 0 mc('grey', '900');
- }
- }
- &.is-success {
- background-color: mc('green', '50');
- background-image: radial-gradient(ellipse at top, mc('green', '50'), lighten(mc('green', '50'), 5%));
- border-color: mc('green', '100');
- box-shadow: 0 0 2px 0 mc('green', '100');
- code {
- background-color: mc('green', '50');
- color: mc('green', '800');
- }
- @at-root .theme--dark & {
- background-color: mc('green', '900');
- background-image: radial-gradient(ellipse at top, mc('green', '900'), darken(mc('green', '900'), 5%));
- border-color: mc('green', '500');
- box-shadow: 0 0 2px 0 mc('grey', '900');
- }
- }
- }
- // ---------------------------------
- // LISTS
- // ---------------------------------
- ol, ul {
- padding: 1rem 24px 0 24px;
- list-style-position: inside;
- li + li {
- margin-top: .5rem;
- }
- }
- ul {
- list-style: none;
- > li::before {
- content: '\25b8';
- color: mc('grey', '600');
- display: inline-block;
- width: 1.35rem;
- }
- }
- // ---------------------------------
- // CODE
- // ---------------------------------
- code {
- background-color: mc('indigo', '50');
- padding: 0 5px;
- color: mc('indigo', '800');
- font-family: 'Source Code Pro', monospace;
- font-weight: normal;
- font-size: 1rem;
- box-shadow: none;
- &::before, &::after {
- display: none;
- }
- }
- .prismjs{
- border: none;
- border-radius: 5px;
- box-shadow: initial;
- background-color: mc('grey', '900');
- padding: 1rem 1rem 1rem 3rem;
- margin: 1rem 24px;
- > code {
- background-color: transparent;
- padding: 0;
- color: #FFF;
- box-shadow: initial;
- display: block;
- font-size: .85rem;
- font-family: 'Source Code Pro', monospace;
- &:after, &:before {
- content: initial;
- letter-spacing: initial;
- }
- }
- }
- // ---------------------------------
- // TASK LISTS
- // ---------------------------------
- .task-list-item {
- position: relative;
- list-style-type: none;
- &-checkbox[disabled] {
- display: none;
- & + label {
- padding-left: 1.5rem;
- }
- & + label::before {
- position: absolute;
- left: 0;
- top: 2px;
- content: ' ';
- display: block;
- width: 1.1rem;
- height: 1.1rem;
- background-color: #FFF;
- border: 1px solid mc('grey', '400');
- border-radius: 2px;
- font-weight: bold;
- font-size: .8rem;
- line-height: 1rem;
- text-align: center;
- @at-root .theme--dark & {
- background-color: mc('grey', '900');
- border-color: mc('grey', '700');
- }
- }
- &[checked] + label::before {
- content: '✓';
- }
- }
- .contains-task-list {
- padding: .5rem 0 0 1.5rem;
- }
- }
- // ---------------------------------
- // TABLES
- // ---------------------------------
- table {
- margin: .5rem 1.75rem;
- border-spacing: 0;
- th {
- padding: .75rem;
- border-bottom: 2px solid mc('grey', '500');
- color: mc('grey', '600');
- }
- td {
- padding: .75rem;
- }
- tr {
- td {
- border-bottom: 1px solid mc('grey', '200');
- }
- }
- }
- }
|