-
Notifications
You must be signed in to change notification settings - Fork 0
/
_media.scss
112 lines (111 loc) · 1.52 KB
/
_media.scss
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
@use "base";
@media screen and (max-width: 743px) {
.dropdown5 .dropbtn5 {
display: none;
}
.nav {
display: flex;
max-height: 0;
overflow: hidden;
justify-content: center;
padding-left: 100px;
padding-right: 100px;
margin-top: -3px;
}
.bluebox {
display: none;
}
.menu {
display: flex;
}
}
@media screen and (min-width: 744px) {
.dropdown5 {
display: flex;
}
.nav {
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 10px;
overflow: visible;
}
.menu {
display: none;
margin-top: 10px;
}
.genre {
display: none;
}
.billeder {
display: none;
}
.info {
display: none;
}
.kontakt {
display: none;
}
.sog {
display: flex;
}
.dropbtn {
display: flex;
}
.dropbtn1 {
display: none;
}
.dropbtn2 {
display: none;
}
.dropbtn3 {
display: none;
}
.dropbtn4 {
display: none;
}
}
@media screen and (min-width: 1100px) {
.dropdown5 {
display: none;
}
.nav {
display: flex;
flex-direction: row;
justify-content: space-around;
margin-top: 10px;
}
.menu {
display: none;
}
.genre {
display: flex;
}
.billeder {
display: flex;
}
.info {
display: flex;
}
.kontakt {
display: flex;
}
.dropbtn {
display: flex;
}
.dropbtn1 {
display: flex;
}
.dropbtn2 {
display: flex;
}
.dropbtn3 {
display: flex;
}
.dropbtn4 {
display: flex;
}
.dropbtn5 {
display: none;
}
}