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:normal 16px Helvetica, Arial, sans-serif; | |
background: #EDEDED | |
url(http://www.starwars.com/img/explore/encyclopedia/technology/millenniumfalcon_hero3.jpg) | |
top center no-repeat; | |
color:#fff; | |
} | |
h1 { | |
font-size:36px; | |
line-height:28px; |
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:normal 16px Helvetica, Arial, sans-serif; | |
/*Цвет фона — для плавного перехода от картинки*/ | |
background:#EDEDED | |
url(http://www.starwars.com/img/explore/encyclopedia/technology/millenniumfalcon_hero3.jpg) | |
top center no-repeat; | |
color:#fff; | |
} | |
h1 { | |
font-size:36px; |
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
/* Dev-P13_Lesson2__1 */ | |
/*Пример использования селекторов и свойств CSS3*/ | |
/*Пример рекомендуется смотреть в Google Chrome*/ | |
body { | |
font:normal 16px Helvetica, Arial, sans-serif; | |
background: #EDEDED | |
url(http://www.starwars.com/img/explore/encyclopedia/technology/millenniumfalcon_hero3.jpg) | |
top center no-repeat; | |
color:#fff; | |
} |
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:10px; | |
font-family:Helvetica, Tahoma, sans-serif; | |
line-height:1.5; | |
/* font: 10px/1.5 Helvetica, Tahoma, sans-serif;*/ | |
padding:20px; |
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 "PT Sans", Tahoma, Arial, sans-serif; | |
} | |
h1 { | |
font-size:48px; | |
text-transform:uppercase; |
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-family:sans-serif; | |
line-height:1.5; | |
padding:30px; | |
} | |
h1 { |
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 { | |
height: 100%; | |
} | |
.box { | |
height:100px; | |
width:100px; |
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-family:sans-serif; | |
font-size:24px; | |
padding:20px; | |
} | |
.menu { |
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:10px; | |
font-family:Helvetica, Tahoma, sans-serif; | |
line-height:1.5; | |
/* font: 10px/1.5 Helvetica, Tahoma, sans-serif;*/ | |
padding:20px; |
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
/** | |
* position | |
*/ | |
body { | |
padding:40px; | |
} | |
.parent { | |
position:relative; |