-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
105 lines (77 loc) · 1.13 KB
/
main.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
body{
background-color: #e6effc;
}
.expo{
text-align: center;
}
h1{
font-family: serif;
}
.museums {
border: 10px solid #829efa;
padding: 10px;
margin: 0 auto;
width: 600px;
text-align: center;
}
.dropbtn{
background-color: ;
color: ;
padding: 18px;
font-size: 14px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: green;
}
.cntryDropdown {
position: relative;
display: inline-block;
}
.countryContent {
display: none;
position: absolute;
background-color: aqua;
min-width: 160px;
box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.2);
}
.countryContent a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.countryContent a:hover {background-color: white;}
.show {display: block;}
.results{
}
ul{
max-height: 100vh;
overflow: auto;
}
li{
padding: 7px;
font-size: 18px;
}
.search_spacer{
width: 100%;
height: 80px;
}
.search_spacer img{
width: 100%;
height: 75px;
}
#museum_map{
position: fixed;
right: 0;
width: 45%;
height: 500px;
border: 3px;
background-color: grey;
}
#result_list{
float: left;
background-color: ;
width: 50%;
}