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
|
}
|
76
|
|
77
|
input, select {
|
78
|
border: 1px solid grey;
|
79
|
margin-left: 2px;
|
80
|
font-size: 14px;
|
81
|
line-height: 20px;
|
82
|
padding: 6px 12px;
|
83
|
}
|
84
|
|
85
|
select {
|
86
|
padding: 6px 18px 6px 12px;
|
87
|
appearance: none;
|
88
|
background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 15% no-repeat white;
|
89
|
}
|
90
|
|
91
|
/* Remove default arrow in Internet Explorer 10 and 11 */
|
92
|
select::-ms-expand {
|
93
|
display: none;
|
94
|
}
|
95
|
|
96
|
/* Target Internet Explorer 9 to undo the custom arrow */
|
97
|
@media screen and (min-width:0\0) {
|
98
|
select {
|
99
|
background: none \9;
|
100
|
padding: 5px \9;
|
101
|
}
|
102
|
}
|