-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcs.css
46 lines (43 loc) · 1.09 KB
/
cs.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
body {
background-color: #0277bd;
}
font {
color: #0277bd;
}
#mapid { height: 450px; }
img{
display: inline;
}
a {
color: yellow;
font-family: "Times New Roman", Times, serif;
font-size: 180%;
display: inline;
}
/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
background-color: #0277bd;
font-family: "Times New Roman", Times, serif;
font-size: 180%;
color: yellow;
cursor: pointer;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
background-color: blue;
}
/* Style the accordion panel. Note: hidden by default */
div.panel {
padding: 0 18px;
background-color: #0277bd;
display: none;
}
/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
display: block !important;
}