Projekt

Obecné

Profil

Stáhnout (3.57 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
  text-align: justify;
15
}
16

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

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

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

    
32
.app-content {
33
  height: calc(85% - 5em);
34
}
35

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

    
40
.green {
41
  color: green;
42
}
43

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
(4-4/4)