-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnav.css
133 lines (118 loc) · 2.05 KB
/
nav.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i");
/*Reset*/
html,
body {
margin: 0;
padding: 0;
font-family: "Lato", sans-serif;
color: #1f4568;
}
body {
background-image: url("https://image.ibb.co/de6JzG/bitmap_1_1.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.collapse {
display: block;
}
/*menu header*/
.header {
padding: 30px 25px;
}
.header__elenco {
padding: 0;
margin: 0;
list-style: none;
}
.header__menu {
float: right;
}
.header__el {
padding: 0 25px;
display: inline-block;
}
.header__img {
display: inline-block;
vertical-align: middle;
}
.header__logo,
.header__menu {
display: inline-block;
vertical-align: middle;
}
.header__title {
font-size: 15px;
margin: 0;
margin-left: 10px;
display: inline-block;
line-height: 18px;
vertical-align: middle;
}
.header__light {
color: #8198ae;
}
.header__link {
color: #1f4568;
font-size: 14px;
}
.header__link:hover {
text-decoration: none;
color: #3a9fff;
}
.navbar-toggle .icon-bar {
background-color: #8198ae;
}
.navbar-toggle {
margin: 5px 0;
}
@media screen and (max-width: 1024px) {
.collapse {
display: none;
}
.navbar-toggle {
margin: 0;
display: inline-block;
margin-right: 10px;
margin-top: 20px;
}
.header__container {
width: 100%;
padding: 0;
z-index: 100;
background-color: #fff;
}
.header__menu {
width: 100%;
}
.header {
background-color: #fff;
padding: 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 4;
height: 60px;
}
.header__logo {
padding: 12px 20px 12px 20px;
}
.header__el {
display: block;
padding: 10px 20px;
border-top: 1px solid #ededed;
}
.header .btn--white,
.header .btn--white:hover {
padding: 0;
border: 0;
box-shadow: none;
color: #fff;
background-color: transparent;
}
.header__el--blue {
background-color: #40394a;
}
}