| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- html {
- font-size: $base-font-size;
- }
- /**
- * Reset some basic elements
- */
- body, h1, h2, h3, h4, h5, h6,
- p, blockquote, pre, hr,
- dl, dd, ol, ul, figure {
- margin: 0;
- padding: 0;
- }
- /**
- * Basic styling
- */
- body {
- font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
- color: $text-color;
- background-color: $background-color;
- -webkit-text-size-adjust: 100%;
- -webkit-font-feature-settings: "kern" 1;
- -moz-font-feature-settings: "kern" 1;
- -o-font-feature-settings: "kern" 1;
- font-feature-settings: "kern" 1;
- font-kerning: normal;
- display: flex;
- min-height: 100vh;
- flex-direction: column;
- overflow-wrap: break-word;
- }
- /**
- * Set `margin-bottom` to maintain vertical rhythm
- */
- h1, h2, h3, h4, h5, h6,
- p, blockquote, pre,
- ul, ol, dl, figure,
- %vertical-rhythm {
- margin-bottom: $spacing-unit * .5;
- }
- hr {
- margin-top: $spacing-unit;
- margin-bottom: $spacing-unit;
- }
- /**
- * `main` element
- */
- main {
- display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
- }
- /**
- * Images
- */
- img {
- max-width: 100%;
- vertical-align: middle;
- }
- /**
- * Figures
- */
- figure > img {
- display: block;
- }
- figcaption {
- font-size: $small-font-size;
- }
- /**
- * Lists
- */
- ul, ol {
- margin-left: $spacing-unit;
- }
- li {
- > ul,
- > ol {
- margin-bottom: 0;
- }
- }
- /**
- * Headings
- */
- h1, h2, h3, h4, h5, h6 {
- color: $heading-color;
- font-weight: 500;
- }
- /**
- * Links
- */
- a {
- color: $link-base-color;
- text-decoration: none;
- &:visited {
- color: $link-visited-color;
- }
- &:hover {
- color: $link-hover-color;
- text-decoration: underline $brand-color;
- text-underline-offset: 3px;
- }
- .social-media-list &:hover {
- text-decoration: none;
- .username {
- text-decoration: underline;
- }
- }
- }
- /**
- * Blockquotes
- */
- blockquote {
- color: $brand-color;
- border-left: 4px solid $border-color-01;
- padding-left: $spacing-unit * .5;
- @include relative-font-size(1.05);
- font-style: italic;
- > :last-child {
- margin-bottom: 0;
- }
- i, em {
- font-style: normal;
- }
- }
- /**
- * Code formatting
- */
- pre,
- code {
- font-family: $code-font-family;
- background-color: $code-background-color;
- @include media-query($on-palm) {
- font-family: monospace;
- }
- }
- pre {
- padding: 8px 12px;
- font-size: 15px;
- line-height: 1.4;
- color: $heading-color;
- overflow-x: auto;
- > code {
- display: inline-block;
- width: 100%;
- }
- }
- div.highlight, figure.highlight {
- @extend %vertical-rhythm;
- border: 1px solid $border-color-01;
- border-radius: 3px;
- pre { margin: 0 }
- table, tbody, th, tr, td {
- margin: 0;
- padding: 0;
- border: 0
- }
- .lineno, .gl { text-align: right }
- }
- figure.highlight {
- table { margin: -8px -12px -14px }
- td.gutter { border-right: 1px solid $border-color-01 }
- td.code { width: 100% }
- }
- code.highlighter-rouge {
- padding: 1px 5px;
- font-size: 14px;
- border: 1px solid $border-color-01;
- border-radius: 3px;
- }
- /**
- * Wrapper
- */
- .wrapper {
- max-width: $content-width;
- margin: 0 auto;
- padding: 0 $spacing-unit;
- @extend %clearfix;
- @media screen and (max-width: $on-medium) {
- padding-right: $spacing-unit * 0.6;
- padding-left: $spacing-unit * 0.6;
- }
- }
- /**
- * Clearfix
- */
- %clearfix:after {
- content: "";
- display: table;
- clear: both;
- }
- /**
- * Icons
- */
- .orange {
- color: #f66a0a;
- }
- .grey {
- color: #828282;
- }
- .svg-icon {
- width: 1.25em;
- height: 1.25em;
- display: inline-block;
- fill: currentColor;
- vertical-align: text-bottom;
- overflow: visible;
- }
- /**
- * Tables
- */
- table {
- margin-bottom: $spacing-unit;
- width: 100%;
- text-align: $table-text-align;
- color: $table-text-color;
- border-collapse: collapse;
- border: 1px solid $table-border-color;
- tr {
- &:nth-child(even) {
- background-color: $table-zebra-color;
- }
- }
- th, td {
- padding: ($spacing-unit * 33.3333333333 * .01) ($spacing-unit * .5);
- }
- th {
- background-color: $table-header-bg-color;
- border: 1px solid $table-header-border;
- }
- td {
- border: 1px solid $table-border-color;
- }
- @include media-query($on-laptop) {
- display: block;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- }
- }
|