This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*actually (spoiler alert!) absolute centering | |
| only requires a declared height* | |
| and these styles:*/ | |
| .Center-Container { | |
| position: relative; | |
| } | |
| .Absolute-Center { | |
| margin: auto; | |
| position: absolute; | |
| top: 0; left: 0; bottom: 0; right: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media only screen and (min-width: 320px) { | |
| /* Small screen, non-retina */ | |
| } | |
| @media | |
| only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px), | |
| only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px), | |
| only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .prevent-text-breakouts { | |
| -ms-word-break: break-all; | |
| word-break: break-all; | |
| word-break: break-word; | |
| -webkit-hyphens: auto; | |
| -moz-hyphens: auto; | |
| hyphens: auto; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $turquoise: rgb(26, 188, 156) | |
| $emerland: rgb(46, 204, 113) | |
| $peter-river: rgb(52, 152, 219) | |
| $amethyst: rgb(155, 89, 182) | |
| $wet-asphalt: rgb(52, 73, 94) | |
| $green-sea: rgb(22, 160, 133) | |
| $nephritis: rgb(39, 174, 96) | |
| $belize-hole: rgb(41, 128, 185) | |
| $wisteria: rgb(142, 68, 173) | |
| $midnight-blue: rgb(44, 62, 80) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Заголовки 152 символа: | |
| 0410-044f,0030-0039,0020-002e,0061-007a,0041-005a,003a,003b,003f,0040,0085,0088,0096,0097,00a7,00ab,00bb,2116 | |
| ! " # $ % & ' ( ) * + , - . 0 1 2 3 4 5 6 7 8 9 : ; ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z … ˆ – — § « » А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э Ю Я а б в г д е ж з и й к л м н о п р с т у ф х ц ч ш щ ъ ы ь э ю я № | |
| Основной текст 176 символов | |
| 0020-007a,0410-044f,0401,0451,2116,0082,0084,0085,0091-0097,00a7,00a9,00ab,00ae,00b7,00bb,0088,00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin word-wrap() { | |
| word-break: break-word; | |
| -webkit-hyphens: auto; | |
| -moz-hyphens: auto; | |
| hyphens: auto; | |
| } | |
| @mixin ellipsis() { | |
| overflow: hidden; | |
| white-space: nowrap; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*Один счетчик поуровнево, разделитель второй аргумент*/ | |
| ol { | |
| counter-reset: item; | |
| list-style: none; | |
| } | |
| li { | |
| display: block; | |
| } | |
| li:before { | |
| counter-increment: item; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .container { | |
| background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0%, transparent 3%, transparent 100%) !important; | |
| background-position: left top; | |
| background-repeat: repeat; | |
| background-size: $line-height $line-height; | |
| } |