This file contains 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
/* | |
— цвет внешних ссылок #f70; | |
— ссылка в новом окне должна | |
после себя содержать utf символ | |
без подчеркивания | |
— ссылки на сервисы google должны быть цвета #666 | |
— http://clck.ru/d/DCx9h3cu142dJ | |
*/ | |
a[href^="http"]:link, |
This file contains 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
/* | |
— четные строки выделить цветом #ddebf7 | |
— третий и далее через один от него столбец | |
выделить #f2f2de | |
— http://clck.ru/d/TiOhh2nF142wp | |
*/ | |
tr:nth-child(2n) | |
{ | |
background-color:#ddebf7; |
This file contains 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
/* | |
Список ссылок со стрелкой | |
— цвет внешних ссылок #f70; | |
— ссылка в новом окне должна | |
после себя содержать utf символ | |
без подчеркивания | |
— ссылки на сервисы google должны быть цвета #666 | |
— http://clck.ru/d/DCx9h3cu142dJ | |
*/ |
This file contains 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
/** | |
* popup__tail | |
*/ | |
body { | |
background: #FFE8AA; | |
} | |
.popup { | |
width: 200px; |
This file contains 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
/** | |
* Photo set | |
*/ | |
.photo-grid { | |
list-style: none; | |
margin: 0 0 0 -10px; | |
padding: 0; | |
max-width: 900px; | |
} |
This file contains 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
/* | |
— Первый параграф в article | |
выделить бОльшим кеглем | |
— последний цветом #999 | |
*/ | |
This file contains 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
/* | |
по состоянию checked включать/выключать | |
соответствующие элементы | |
http://clck.ru/d/Jxj_mgDC143fZ | |
*/ |
This file contains 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
.float | |
{ | |
float: right; | |
border: 2px solid green; | |
height: 100px; | |
} | |
div div | |
{ | |
background: red; |
This file contains 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
div | |
{ | |
font-size: 60px; | |
background: red; | |
line-height: 65px; | |
margin-top: 100px; | |
border: blue 1px solid; | |
} | |
div span |