Ramil Belevtsov, [19.08.18 14:33]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Art-Cloud</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="wrapper">
<header>
<div id="logo">
</div>
</header>
<div id="content">
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>
Ramil Belevtsov, [19.08.18 14:33]
/*CSS селекторы*/
html, body{
margin:0;
padding:0;
font-family: Arial, sans-serif;
}
/* monitors and laptops */
@media screen and (min-width: 1240px) {
header{
position: absolute;
width: 100%;
height: 10vh;
background-color: #000;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
#logo{
position: absolute;
width: 5vh;
height: 5vh;
background-image: url(../img/logo-white.png);
margin-top: 2.5vh;
margin-left: 2.5vh;
}
/* tablet */
@media screen and (min-width: 1024px) and (max-width: 1240px) {
}
@media screen and (min-width: 768px) and (max-width: 1024px) {}
/* mobile */
@media screen and (max-width: 768px) {}