123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /* ==========================================================================
- Typography
- ========================================================================== */
- /*
- Headings
- ========================================================================== */
- h1, h2, h3, h4, h5, h6 {
- font-family: $heading-font;
- }
- h1 {
- @include font-size(32);
- line-height: 1;
- }
- h2 {
- @include font-size(28);
- line-height: 1;
- }
- h3 {
- @include font-size(24);
- }
- h4 {
- @include font-size(18);
- }
- h5 {
- @include font-size(16);
- }
- h6 {
- @include font-size(14);
- }
- /*
- Links
- ========================================================================== */
- a {
- text-decoration: none;
- color: $link-coloralt;
- &:visited {
- color: $linkcoloraltvisited;
- }
- &:hover {
- color: $linkcoloralthover;
- }
- &:focus {
- outline: thin dotted;
- color: $linkcoloraltfocus;
- }
- &:hover,
- &:active {
- outline: 0;
- }
- }
- /*
- Figure captions
- ========================================================================== */
- figcaption {
- padding-top: 10px;
- @include font(14);
- line-height: 1.3;
- color: lighten($text-color, 10);
- }
- /*
- Feature image captions
- ========================================================================== */
- .image-credit {
- @include grid(12,10);
- @include prefix(12,1);
- @include suffix(12,1);
- display: block;
- text-align: right;
- @include font(12);
- line-height: 1.3;
- font-style: italic;
- color: lighten($text-color, 30);
- @media #{$small} {
- @include grid(12,9);
- @include prefix(12,0);
- @include suffix(12,0);
- }
- @media #{$x-large} {
- @include grid(12,8.5);
- }
- a {
- color: lighten($text-color, 30);
- }
- }
- /*
- Notices
- ========================================================================== */
- .notice {
- margin-top: 1.5em;
- padding: .5em 1em;
- text-indent: 0;
- @include font-rem(14);
- background-color: $body-color;
- border: 1px solid darken($body-color,20);
- @include rounded(3px);
- }
- /*
- Blockquotes
- ========================================================================== */
- blockquote {
- margin-left: -28px;
- padding-left: 20px;
- border-left: 8px solid $border-color;
- font-family: $alt-font;
- font-style: italic;
- }
- /*
- Footnotes
- ========================================================================== */
- .footnotes {
- ol, li, p {
- margin-bottom: 0;
- @include font-rem(14);
- }
- }
- /*
- Paragraphs
- ========================================================================== */
- p {
- font-size: 1.1rem;
- margin: 0 0 $indent-var;
- /* text-align: justify; */
- /* Do not justify the text until all major web browsers support
- hyphens for lang="fr" which is not the case for Chrome yet. See
- https://developer.mozilla.org/en-US/docs/Web/CSS/hyphens#Browser_compatibility
- */
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- -o-hyphens: auto;
- -moz-hyphens: auto;
- hyphens: auto;
- & + p {
- margin-top: -($indent-var);
- }
- }
- .post article, .page article {
- @if $paragraph-indent == true {
- p {
- text-indent: $indent-var;
- &.noindent, &.notice {
- text-indent: 0;
- }
- }
- blockquote, table, figure, header, footer, .noindent {
- p {
- text-indent: 0;
- }
- }
- }
- }
- /*
- Code snippets
- ========================================================================== */
- tt, code, kbd, samp, pre {
- font-family: $code-font;
- }
- p,
- li {
- code {
- @include font-rem(12);
- line-height: 1.5;
- white-space: nowrap;
- margin: 0 2px;
- padding: 0 5px;
- border: 1px solid lighten($black, 90);
- background-color: #efefef;
- @include rounded(3px);
- }
- }
- pre {
- @include font-rem(12);
- line-height: 1.5;
- overflow-x: auto;
- }
|