/
githubmirror
/
CS-Notes
Обзор
Документация
Войти
/
githubmirror
/
CS-Notes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/_style/prism-master/examples/prism-scss.html
31 строка
579 B
CyC2018
use prism-tomorrow.css
19 дек 2018, 09:09
19 дек 2018, 09:09
e9e604e
Код
Авторство
О чём код?
<h2>Comments</h2> <pre><code>// Single line comment /* Multi-line comment */</code></pre> <h2>At-rules</h2> <pre><code>@import "foo.scss"; @media (min-width: 600px) {} .seriousError { @extend .error; } @for $i from 1 through 3 {} </code></pre> <h2>Compass URLs</h2> <pre><code>@font-face { font-family: "opensans"; src: font-url("opensans.ttf"); }</code></pre> <h2>Variables</h2> <pre><code>$width: 5em; #main { width: $width; }</code></pre> <h2>Interpolations are highlighted in property names</h2> <pre><code>p.#{$name} { #{$attr}-color: blue; } </code></pre>