Projekt

Obecné

Profil

Stáhnout (3.28 KB) Statistiky
| Větev: | Revize:
1
@font-face {
2
  font-family: 'Charis';
3
  src: url('fonts/charis-sil/CharisSILR.ttf') format('truetype');
4
}
5

    
6
@font-face {
7
  font-family: 'Impacted';
8
  src: url('fonts/impacted/IMPACTED.ttf') format('truetype');
9
}
10

    
11
html, body, .container-fluid {
12
  height: 100%;
13
  font-family: 'Charis', Fallback, sans-serif;
14
}
15

    
16
.app-header {
17
  color: #376039;
18
  min-height: 15%;
19
}
20

    
21
.logo {
22
  height: 80px;
23
}
24

    
25
.app-header .title {
26
  width: max-content;
27
  justify-content: center;
28
  font-family: 'Impacted',  Fallback, sans-serif;
29
}
30

    
31
.app-content {
32
  height: calc(80% - 2.5em);
33
}
34

    
35
.menu {
36
  min-height: 2.5em;
37
  background-image: linear-gradient( #A5ca79, #376039);
38
  color: white;
39
}
40

    
41
.menu a {
42
  height: 100%;
43
  color: white;
44
  background-color: transparent;
45
}
46

    
47
.menu a:hover,
48
.menu a:focus {
49
  background-color: #A5ca79;
50
  text-decoration: none;
51
}
52

    
53
.menu .active{
54
  background-image: linear-gradient(#376039, #A5ca79);
55
  text-decoration: none;
56
}
57

    
58
.app-content .content {
59
  background-color: #f1f1f1;
60
  height: 100%;
61
  flex-direction: column;
62
}
63

    
64
.app-footer {
65
  text-align: center;
66
  background-image: linear-gradient( #A5ca79, #376039);
67
  color: white;
68
  height: 5%;
69
}
70

    
71
.modal-body {
72
  background-color: #ecf5e4;
73
}
74

    
75
.modal-header, .modal-footer {
76
  background-image: linear-gradient( #A5ca79, #376039);
77
}
78

    
79
.app-content .content .search-filters {
80
  max-width: none !important;
81
}
82

    
83
.app-content .content .search-results {
84
  height: 100%;
85
  overflow: auto;
86
}
87

    
88
.app-content .content .search-results .action-td {
89
  width: 13%;
90
}
91

    
92
input, select {
93
  height: 90%;
94
  border-radius: 5px;
95
  border: 1px solid grey;
96
  margin-left: 2px;
97
  font-size: 14px;
98
  line-height: 20px;
99
  padding: 6px 12px;
100
}
101

    
102
.min-wdth {
103
  min-width: 200px;
104
}
105

    
106
.btn{
107
  background-color: #A5ca79;
108
}
109

    
110
select {
111
  padding: 6px 18px 6px 12px;
112
  appearance: none;
113
  background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 20px no-repeat white;
114
}
115

    
116
/* Remove default arrow in Internet Explorer 10 and 11 */
117
select::-ms-expand {
118
  display: none;
119
}
120

    
121
/* Target Internet Explorer 9 to undo the custom arrow */
122
@media screen and (min-width:0\0) {
123
  select {
124
    background: none \9;
125
    padding: 5px \9;
126
  }
127
}
128

    
129
/*multis. jquery*/
130
.multi-select-container {
131
  min-width: 200px;
132
  display: inline-block;
133
  position: relative;
134
  margin-left: 2px;
135
  font-size: 14px;
136
  line-height: 20px;
137
}
138

    
139
.multi-select-menu {
140
  position: absolute;
141
  left: 0;
142
  top: 0.8em;
143
  float: left;
144
  min-width: 100%;
145
  background: #fff;
146
  margin: 1em 0;
147
  padding: 0.4em 6px;
148
  border: 1px solid #aaa;
149
  display: none;
150
  z-index: 20;
151
  overflow: hidden scroll;
152
}
153

    
154
.multi-select-menu input {
155
  margin-right: 0.3em;
156
  vertical-align: 0.1em;
157
}
158

    
159
.multi-select-button {
160
  border-radius: 5px;
161
  border: 1px solid grey;
162
  display: inline-block;
163
  font-size: 0.875em;
164
  padding: 6px 12px;
165
  min-width: 200px;
166
  max-width: 20em;
167
  white-space: nowrap;
168
  overflow: hidden;
169
  text-overflow: ellipsis;
170
  vertical-align: -0.5em;
171
  background-color: #fff;
172
  cursor: default;
173
}
174

    
175
.multi-select-button:after {
176
  content: "";
177
  display: inline-block;
178
  width: 0;
179
  height: 0;
180
  border-style: solid;
181
  border-width: 0.4em 0.4em 0 0.4em;
182
  border-color: #333333 transparent transparent transparent;
183
  margin-left: 0.4em;
184
  vertical-align: 0.1em;
185
  float: right;
186
  margin-top: 5%
187
}
188

    
189
.multi-select-container--open .multi-select-menu { display: block; }
190

    
(7-7/8)