-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia.css
137 lines (136 loc) · 2.81 KB
/
media.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
128
129
130
131
132
133
134
135
136
137
@media screen and (max-width: 501px) {
h1 {
font-size: 30px;
}
header {
align-content: center;
}
.container {
width: 80%;
}
.container__logo {
width: 100%;
position: absolute;
}
.header__menu {
width: 100%;
justify-content: center;
}
.header__menu .nav__menu {
display: none;
}
.container__title {
align-content: center;
}
.container__title p {
font-size: 11px;
}
.container__city {
grid-template-columns: 1fr;
}
.container__image {
width: 100%;
}
.container__image img {
width: inherit;
}
.container__text {
text-align: center;
}
.container__text h2 {
margin-top: 20px;
font-size: 40px;
}
.destination__places {
grid-template-columns: 1fr;
}
.destintation__places_ {
grid-template-columns: 100%;
}
.destination__bigImage {
width: 100%;
margin-bottom: 15px;
}
.destination__text {
text-align: center;
}
.destination__bigImage img {
width: 100%;
}
.destintation__places_ .destination__places__small {
grid-template-columns: 1fr;
}
.footer__information__up {
grid-template-columns: 100%;
}
.text__title {
text-align: center;
}
.text__title h1 {
font-size: 20px;
}
.footer__information__up .text__subscribe input {
margin-top: 10px;
width: 100%;
}
.footer__information__up .text__subscribe button {
margin-top: 10px;
}
#mount {
margin-left: 20px;
}
/* mobil */
.container__mobil {
position: fixed;
width: 100%;
background: #fff;
height: 0vh;
z-index: 3;
overflow: hidden;
}
.mobil__menu_button {
position: fixed;
top: 5%;
right: 7%;
z-index: 4;
background: none;
border: none;
}
.mobil__menu_button div {
width: 25px;
height: 4px;
background: #000;
margin: 3px 0;
}
.header__logo__mobil {
margin-top: 35px;
width: 100%;
display: grid;
justify-items: center;
}
.header__logo__mobil img {
width: 100px;
}
.nav__mobil__menu {
width: 100%;
height: 100%;
text-align: center;
}
.nav__mobil__menu li {
margin-top: 15px;
}
.nav__mobil__menu li a {
color: #01a2a6;
font-family: 'Lato', sans-serif;
text-decoration: none;
font-size: 18px;
text-transform: uppercase;
display: block;
position: relative;
transform: scale(1);
}
.nav__mobil__menu li a:hover {
color: #000;
transform: scale(1.1);
}
}