Projekt

Obecné

Profil

Stáhnout (3.5 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:not(input[type=checkbox]), select, textarea {
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
input[type=checkbox]
112
{
113
    -webkit-appearance:checkbox;
114
}
115

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

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

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

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

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

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

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

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

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

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

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

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

    
(9-9/10)