Projekt

Obecné

Profil

Stáhnout (3.37 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
.required {
36
  color: red;
37
}
38

    
39
.menu {
40
  min-height: 2.5em;
41
  background-image: linear-gradient( #A5ca79, #376039);
42
  color: white;
43
}
44

    
45
.menu a {
46
  height: 100%;
47
  color: white;
48
  background-color: transparent;
49
}
50

    
51
.menu a:hover,
52
.menu a:focus {
53
  background-color: #A5ca79;
54
  text-decoration: none;
55
}
56

    
57
.menu .active{
58
  background-image: linear-gradient(#376039, #A5ca79);
59
  text-decoration: none;
60
}
61

    
62
.app-content .content {
63
  background-color: #f1f1f1;
64
  height: 100%;
65
  flex-direction: column;
66
}
67

    
68
.app-footer {
69
  text-align: center;
70
  background-image: linear-gradient( #A5ca79, #376039);
71
  color: white;
72
  height: 5%;
73
}
74

    
75
.modal-body {
76
  background-color: #f1f1f1;
77
}
78

    
79
.modal-header, .modal-footer {
80
  background-image: linear-gradient( #A5ca79, #376039);
81
}
82

    
83
.app-content .content .search-filters {
84
  max-width: none !important;
85
}
86

    
87
.app-content .content {
88
  height: 100%;
89
  overflow: auto;
90
}
91

    
92
.app-content .content .search-results {
93
  height: 100%;
94
  overflow: auto;
95
}
96

    
97
.app-content .content .search-results .action-td {
98
  width: 13%;
99
}
100

    
101
input, select {
102
  height: 90%;
103
  border-radius: 5px;
104
  border: 1px solid grey;
105
  margin-left: 2px;
106
  font-size: 14px;
107
  line-height: 20px;
108
  padding: 6px 12px;
109
}
110

    
111
.min-wdth {
112
  min-width: 200px;
113
}
114

    
115
.btn{
116
  background-color: #A5ca79;
117
}
118

    
119
select {
120
  padding: 6px 18px 6px 12px;
121
  appearance: none;
122
  background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 20px no-repeat white;
123
}
124

    
125
/* Remove default arrow in Internet Explorer 10 and 11 */
126
select::-ms-expand {
127
  display: none;
128
}
129

    
130
/* Target Internet Explorer 9 to undo the custom arrow */
131
@media screen and (min-width:0\0) {
132
  select {
133
    background: none \9;
134
    padding: 5px \9;
135
  }
136
}
137

    
138
/*multis. jquery*/
139
.multi-select-container {
140
  min-width: 200px;
141
  display: inline-block;
142
  position: relative;
143
  margin-left: 2px;
144
  font-size: 14px;
145
  line-height: 20px;
146
}
147

    
148
.multi-select-menu {
149
  position: absolute;
150
  left: 0;
151
  top: 0.8em;
152
  float: left;
153
  min-width: 100%;
154
  background: #fff;
155
  margin: 1em 0;
156
  padding: 0.4em 6px;
157
  border: 1px solid #aaa;
158
  display: none;
159
  z-index: 20;
160
  overflow: hidden scroll;
161
}
162

    
163
.multi-select-menu input {
164
  margin-right: 0.3em;
165
  vertical-align: 0.1em;
166
}
167

    
168
.multi-select-button {
169
  border-radius: 5px;
170
  border: 1px solid grey;
171
  display: inline-block;
172
  font-size: 0.875em;
173
  padding: 6px 12px;
174
  min-width: 200px;
175
  max-width: 20em;
176
  white-space: nowrap;
177
  overflow: hidden;
178
  text-overflow: ellipsis;
179
  vertical-align: -0.5em;
180
  background-color: #fff;
181
  cursor: default;
182
}
183

    
184
.multi-select-button:after {
185
  content: "";
186
  display: inline-block;
187
  width: 0;
188
  height: 0;
189
  border-style: solid;
190
  border-width: 0.4em 0.4em 0 0.4em;
191
  border-color: #333333 transparent transparent transparent;
192
  margin-left: 0.4em;
193
  vertical-align: 0.1em;
194
  float: right;
195
  margin-top: 5%
196
}
197

    
198
.multi-select-container--open .multi-select-menu { display: block; }
199

    
(8-8/9)