Отпарсил, не вижу ошибки, а она есть (: картинка на месте, светится при наведении на ссылку в редакторе.
HTML5 |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>oftolmodesk</title>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/reset.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<div class="header-wrapper">
<div class="company-name">
<h1>Company</h1>
</div>
<div class="menu">
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#">About</a></li>
<li> <a href="#">Portfolio</a></li>
<li> <a href="#">Services</a></li>
<li> <a href="#">Pricing</a></li>
<li> <a href="#">Contact</a></li>
</ul>
</div>
</div>
</header>
<div class="banner">
<div class="banner-wrapper">
<div class="banner-filter"></div>
</div>
</div>
<div class="services"></div>
<div class="middle-section"></div>
<div class="pricing"></div>
<div class="feedbacks"></div>
<footer></footer>
</body>
</html> |
|
CSS |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
| @font-face {
font-family: FuturaBT;
src: url(../fonts/FuturaBT.otf);
}
@font-face {
font-family: 'FuturaBT Bold';
src: url(../fonts/FuturaBT_Bold.otf);
}
@font-face {
font-family: "OpenSansBold";
src: url("../fonts/OpenSansBold/OpenSansBold.eot");
src: url("../fonts/OpenSansBold/OpenSansBold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSansBold/OpenSansBold.woff") format("woff"), url("../fonts/OpenSansBold/OpenSansBold.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
body {
font-size: 16px;
}
header {
width: 100%;
height: 115px;
background-color: #fff;
}
.header-wrapper {
width: 1000px;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: auto;
-webkit-box-align: baseline;
-webkit-align-items: baseline;
-ms-flex-align: baseline;
align-items: baseline;
}
.company-name {
margin: auto;
}
.company-name h1 {
color: #ee8129;
font-family: FuturaBT;
font-size: 36px;
text-align: center;
}
.company-name h1::after {
content: "Name";
color: #3070a8;
font-family: 'FuturaBT Bold';
font-weight: 700;
text-transform: uppercase;
margin-left: 10px;
}
.menu {
margin: auto;
}
.menu ul {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.menu ul li a {
font-family: OpenSansBold;
color: #989898;
margin-right: 30px;
padding: 0 10px 25px 10px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
text-transform: uppercase;
}
.menu ul li a:hover {
color: #3070a8;
border-bottom: 4px solid #3070a8;
}
.banner {
width: 100%;
height: 580px;
}
.banner-wrapper {
width: 1400px;
height: 100%;
margin: auto;
background: url(../img/banner/background.png);
} |
|