-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (59 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (59 loc) · 1.19 KB
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
body {
background-image: url("images/backgroundImage.png");
}
.warning {
color: #C03221;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
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) */
.active, .accordion:hover {
background-color: #ccc;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0 18px;
background-color: white;
display: none;
overflow: hidden;
}
.modal-close {
color: #C03221;
}
.logoTitle {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background-color: #3C887E;
padding: 2px 10px;
width: 100%;
}
.appTitle {
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
nav {
box-shadow: none;
}
.logoImg {
height: 75px;
}
.webContent {
margin: 20px;
}
.headerLabel {
color: white;
font-size: 16px;
}