-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMediaQuery2.css
63 lines (63 loc) · 1.23 KB
/
MediaQuery2.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
@media screen and (max-width: 1000px) {
.hidden {
display: none;
}
#name {
width: auto;
}
#home {
width: auto;
}
.navbar {
display: flex;
position: absolute;
right: 30px;
top: 3vh;
}
.dropbtn1 {
background-color: #dedede;
color: white;
font-size: 16px;
border: none;
cursor: pointer;
height: 60px;
}
.dropbtn1:hover,
.dropbtn1:focus {
background-color: #c7c7c7;
}
.dropdown-content1 {
display: none;
position: relative;
top: 60px;
right: 160px;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown-content1 a {
padding: 12px 16px;
display: block;
position: relative;
}
.dropdown1 a:hover {
background-color: #ddd;
}
.show1 {
display: block;
}
.navbarIcon {
width: 60px;
height: 60px;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
position: relative;
right: 0px;
}
.textarea {
width: 85vw;
}
}