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
/* | |
* Страница карточек шаг 2 | |
* http://clck.ru/d/OkAGYhJd14p0D | |
*/ | |
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
/* | |
* Страница карточек шаг 3 | |
* http://clck.ru/d/UwKTkih_14p1p | |
* http://clck.ru/d/TyYG2nfR14p1H | |
*/ | |
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
.show-hide | |
{ | |
display: none; | |
opacity: 0; | |
width: 200px; | |
height: 200px; | |
background: red; | |
transition: opacity 1s linear 1s; | |
} |
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
body | |
{ | |
margin: 0; | |
padding: 0; | |
font: 16px Arial, sans-serif; | |
} | |
h1, h2, h3, h4, h5, h6 | |
{ |
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
div | |
{ | |
color: red; | |
margin-left: 10px; | |
padding: 5px 10px 20px 30px; | |
background-color: #ccc; | |
background-image: url(http://favicon.yandex.net/favicon/ru.wikipedia.org); | |
background-repeat: repeat-x; | |
background-position: 50%; |
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
body | |
{ | |
font-size: 24px | |
} | |
#myid | |
{ | |
color: red; | |
} |
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
body | |
{ | |
font-size: 24px | |
} | |
#myid | |
{ | |
color: red; | |
} |
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
body | |
{ | |
font-size: 24px | |
} | |
/* все элементы с атрибутом id */ | |
div[id] | |
{ | |
color: red; | |
} |
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
/* самый распространенный: все потомки */ | |
.parent .child | |
{ | |
aborder: 1px solid red; | |
} | |
/* | |
все селекторы можно уточнять | |
именами элементов ol.parent li.child | |
*/ |
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
/* самый распространенный: все потомки */ | |
.parent .child | |
{ | |
aborder: 1px solid red; | |
} | |
/* | |
все селекторы можно уточнять | |
именами элементов ol.parent li.child | |
*/ |