86 lines
1.4 KiB
Plaintext
86 lines
1.4 KiB
Plaintext
|
*
|
||
|
{
|
||
|
margin:0px ;
|
||
|
padding:0px;
|
||
|
}
|
||
|
html {
|
||
|
background-image: url(../image/background.png); /* Путь к картинке */
|
||
|
background-size: cover; /* Растягиваем картинку по ширине */
|
||
|
background-repeat: no-repeat; /* Картинка фона без повторения */
|
||
|
background-position: center; /* Позиция фона по центру */
|
||
|
}
|
||
|
.menu li
|
||
|
{
|
||
|
float:left;
|
||
|
margin:10px 25px;
|
||
|
}
|
||
|
.blok-menu
|
||
|
{
|
||
|
position: sticky;
|
||
|
height: 100px;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
right: 0px;
|
||
|
background: #000000;
|
||
|
box-shadow: 0px 13px 17px -6px #000000;
|
||
|
}
|
||
|
.menu
|
||
|
{
|
||
|
margin:0 auto;
|
||
|
display:table;
|
||
|
}
|
||
|
.menu li span
|
||
|
{
|
||
|
margin-top: 20px;
|
||
|
font: 32px Verdana, Arial, Helvetica, sans-serif;
|
||
|
color:#cccccc;
|
||
|
text-decoration: none;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
.menu li span:hover
|
||
|
{
|
||
|
font: 32px Verdana, Arial, Helvetica, sans-serif;
|
||
|
color:#cc9999;
|
||
|
transition: transform 500ms;
|
||
|
transform: translateY(-8px);
|
||
|
}
|
||
|
|
||
|
.content
|
||
|
{
|
||
|
width: 1200px;
|
||
|
height: auto;
|
||
|
margin:0 auto;
|
||
|
padding:0px;
|
||
|
}
|
||
|
.content h1
|
||
|
{
|
||
|
font: 30px Verdana, Arial, Helvetica, sans-serif;
|
||
|
color:#cccccc;
|
||
|
position: relative;
|
||
|
margin-top: 100px;
|
||
|
left: 150px;
|
||
|
}
|
||
|
.obj img
|
||
|
{
|
||
|
float: left;
|
||
|
display: table;
|
||
|
padding:30px;
|
||
|
margin:0 auto;
|
||
|
transition: transform 500ms;
|
||
|
}
|
||
|
.obj img:hover
|
||
|
{
|
||
|
transform: scale(1.1);
|
||
|
}
|
||
|
.footer
|
||
|
{
|
||
|
width:1200px;
|
||
|
margin-top:100px;
|
||
|
}
|
||
|
.footer p
|
||
|
{
|
||
|
font: 14px Verdana, Arial, Helvetica, sans-serif;
|
||
|
text-align: center;
|
||
|
color:#cccccc;
|
||
|
}
|