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
/* | |
списки и счетчики | |
http://clck.ru/d/_DP820mM15kId | |
http://clck.ru/d/W3EGMhVZ15kIl | |
http://clck.ru/d/yvjcixu815kJJ | |
*/ | |
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
/* | |
Стопка бумаг | |
не должна завистеть от контента: | |
может быть больше или меньше | |
http://clck.ru/d/7IfEw0cr15kKL | |
*/ | |
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
/** | |
* Страница карточек | |
*/ | |
.card { | |
overflow: auto; | |
margin: 5px; | |
padding: 5px; | |
border: 1px solid #ccc; | |
} | |
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
/** | |
* Страница карточек | |
*/ | |
.card { | |
overflow: auto; | |
margin: 5px; | |
padding: 5px; | |
width: 190px; | |
border: 1px solid #ccc; |
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-family: PT Sans; | |
font-size: 14px; | |
} | |
.card |
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: 16px/1.5 Helvetica,sans-serif; | |
} | |
.card | |
{ | |
/*не стоит зря ограничивать высоту | |
тогда при переполнении контентом он вылезет из |
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
@import url(http://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=latin,cyrillic); | |
.card | |
{ | |
background: #f1ecd0; | |
font-family: 'PT Sans', sans-serif; | |
position: relative; | |
padding: 60px; | |
width: 580px; |
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
/* | |
Задание: http://dabblet.com/gist/3010941 | |
Смотреть в хроме | |
*/ | |
.card | |
{ | |
font-family: "PT Sans"; | |
position: relative; |
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: 16px/1.5 Helvetica,sans-serif; | |
} | |
.card | |
{ | |
width: 700px; | |
position: absolute; |
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
input | |
{ | |
/* лучше уточнять, мало ли какой input в интерфейсе появится */ | |
display: none; | |
} | |
@-webkit-keyframes 'pulse' | |
{ | |
0% { | |
-webkit-transform: translate(0, 0); |