Projekt

Obecné

Profil

Stáhnout (3.52 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(85% - 5em);
33
}
34

    
35
.required {
36
  color: red;
37
}
38

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

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

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

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

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

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

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

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

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

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

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

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

    
102
input:not(input[type=checkbox]), select, textarea {
103
  height: 90%;
104
  border-radius: 5px;
105
  border: 1px solid grey;
106
  margin-left: 2px;
107
  font-size: 14px;
108
  line-height: 20px;
109
  padding: 6px 12px;
110
}
111

    
112
input[type=checkbox]
113
{
114
    -webkit-appearance:checkbox;
115
}
116

    
117
textarea {
118
  width: 100%;
119
  resize: none;
120
}
121

    
122
.min-wdth {
123
  min-width: 200px;
124
}
125

    
126
.btn{
127
  background-color: #A5ca79;
128
}
129

    
130
select {
131
  padding: 6px 18px 6px 12px;
132
  appearance: none;
133
  background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 20px no-repeat white;
134
}
135

    
136
/* Remove default arrow in Internet Explorer 10 and 11 */
137
select::-ms-expand {
138
  display: none;
139
}
140

    
141
/* Target Internet Explorer 9 to undo the custom arrow */
142
@media screen and (min-width:0\0) {
143
  select {
144
    background: none \9;
145
    padding: 5px \9;
146
  }
147
}
148

    
149
/*multis. jquery*/
150
.multi-select-container {
151
  min-width: 200px;
152
  display: inline-block;
153
  position: relative;
154
  margin-left: 2px;
155
  font-size: 14px;
156
  line-height: 20px;
157
}
158

    
159
.multi-select-menu {
160
  position: absolute;
161
  left: 0;
162
  top: 0.8em;
163
  float: left;
164
  min-width: 100%;
165
  background: #fff;
166
  margin: 1em 0;
167
  padding: 0.4em 6px;
168
  border: 1px solid #aaa;
169
  display: none;
170
  z-index: 20;
171
  overflow: hidden scroll;
172
}
173

    
174
.multi-select-menu input {
175
  margin-right: 0.3em;
176
  vertical-align: 0.1em;
177
}
178

    
179
.multi-select-button {
180
  border-radius: 5px;
181
  border: 1px solid grey;
182
  display: inline-block;
183
  font-size: 0.875em;
184
  padding: 6px 12px;
185
  min-width: 200px;
186
  max-width: 20em;
187
  white-space: nowrap;
188
  overflow: hidden;
189
  text-overflow: ellipsis;
190
  vertical-align: -0.5em;
191
  background-color: #fff;
192
  cursor: default;
193
}
194

    
195
.multi-select-button:after {
196
  content: "";
197
  display: inline-block;
198
  width: 0;
199
  height: 0;
200
  border-style: solid;
201
  border-width: 0.4em 0.4em 0 0.4em;
202
  border-color: #333333 transparent transparent transparent;
203
  margin-left: 0.4em;
204
  vertical-align: 0.1em;
205
  float: right;
206
  margin-top: 5%
207
}
208

    
209
.multi-select-container--open .multi-select-menu { display: block; }
210

    
(4-4/4)