Projekt

Obecné

Profil

Stáhnout (3.55 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
.green {
40
  color: green;
41
}
42

    
43
.menu {
44
  min-height: 2.5em;
45
  overflow: auto;
46
  background-image: linear-gradient( #A5ca79, #376039);
47
  color: white;
48
}
49

    
50
.menu a {
51
  height: 100%;
52
  color: white;
53
  background-color: transparent;
54
}
55

    
56
.menu a:hover,
57
.menu a:focus {
58
  background-color: #A5ca79;
59
  text-decoration: none;
60
}
61

    
62
.menu .active{
63
  background-image: linear-gradient(#376039, #A5ca79);
64
  text-decoration: none;
65
}
66

    
67
.app-content .content {
68
  background-color: #f1f1f1;
69
  height: 100%;
70
  flex-direction: column;
71
}
72

    
73
.app-footer {
74
  text-align: center;
75
  background-image: linear-gradient( #A5ca79, #376039);
76
  color: white;
77
  height: 2.5em;
78
}
79

    
80
.modal-body {
81
  background-color: #f1f1f1;
82
}
83

    
84
.modal-header, .modal-footer {
85
  background-image: linear-gradient( #A5ca79, #376039);
86
}
87

    
88
.app-content .content .search-filters {
89
  max-width: none !important;
90
}
91

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

    
97
.app-content .content .search-results {
98
  height: 100%;
99
  overflow: auto;
100
}
101

    
102
.app-content .content .search-results .action-td {
103
  width: 13%;
104
}
105

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

    
116
input[type=checkbox]
117
{
118
    -webkit-appearance:checkbox;
119
}
120

    
121
textarea {
122
  width: 100%;
123
  resize: none;
124
}
125

    
126
.min-wdth {
127
  min-width: 200px;
128
}
129

    
130
.btn{
131
  background-color: #A5ca79;
132
}
133

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

    
140
/* Remove default arrow in Internet Explorer 10 and 11 */
141
select::-ms-expand {
142
  display: none;
143
}
144

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

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

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

    
178
.multi-select-menu input {
179
  margin-right: 0.3em;
180
  vertical-align: 0.1em;
181
}
182

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

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

    
213
.multi-select-container--open .multi-select-menu { display: block; }
214

    
(4-4/4)