1
|
html, body, .container-fluid {
|
2
|
height: 100%;
|
3
|
}
|
4
|
|
5
|
.app-header {
|
6
|
background-image: linear-gradient(#A8A4A2, #4B4B4B);
|
7
|
height: 15%;
|
8
|
}
|
9
|
|
10
|
.app-header .title {
|
11
|
width: max-content;
|
12
|
font-family: "Lucida Calligraphy", cursive;
|
13
|
}
|
14
|
|
15
|
.app-content {
|
16
|
height: 80%;
|
17
|
}
|
18
|
|
19
|
.app-content .menu {
|
20
|
background-color: #a8a4a2;
|
21
|
border-right: #4B4B4B solid 2px;
|
22
|
}
|
23
|
|
24
|
.app-content .menu a {
|
25
|
color: #4B4B4B;
|
26
|
background-color: transparent;
|
27
|
}
|
28
|
|
29
|
.app-content .menu a:hover,
|
30
|
.app-content .menu a:focus {
|
31
|
color: #a8a4a2;
|
32
|
background-color: #707070;
|
33
|
text-decoration: none;
|
34
|
border-radius: 15px 50px 50px 15px;
|
35
|
}
|
36
|
|
37
|
.app-content .menu .active{
|
38
|
color: #a8a4a2;
|
39
|
background-color: #4B4B4B;
|
40
|
text-decoration: none;
|
41
|
border-radius: 15px 50px 50px 15px;
|
42
|
}
|
43
|
|
44
|
.app-content .content {
|
45
|
background-color: #c9c5c2;
|
46
|
height: 100%;
|
47
|
flex-direction: column;
|
48
|
}
|
49
|
|
50
|
.app-footer {
|
51
|
text-align: center;
|
52
|
background-image: linear-gradient(#4B4B4B,#A8A4A2);
|
53
|
height: 5%;
|
54
|
}
|
55
|
|
56
|
.modal-body {
|
57
|
background-color: #c9c5c2;
|
58
|
}
|
59
|
|
60
|
.modal-header, .modal-footer {
|
61
|
background-color: #A8A4A2;
|
62
|
}
|
63
|
|
64
|
.modal-header .modal-title {
|
65
|
color: #4B4B4B;
|
66
|
}
|
67
|
|
68
|
.app-content .content .search-results {
|
69
|
height: 100%;
|
70
|
overflow: auto;
|
71
|
}
|
72
|
|
73
|
.app-content .content .search-results .action-td{
|
74
|
width: 1%;
|
75
|
}
|