Projekt

Obecné

Profil

Stáhnout (3.16 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
html, body, .container-fluid {
7
  height: 100%;
8
  font-family: 'Charis', Fallback, sans-serif;
9
}
10

    
11
.app-header {
12
  background-image: linear-gradient( #A5ca79, #376039);
13
  height: 15%;
14
}
15

    
16
.app-header .title {
17
  width: max-content;
18
  font-family: "Georgia, Arial, sans-serif", cursive;
19
}
20

    
21
.app-content {
22
  height: 80%;
23
}
24

    
25
.required {
26
  color: red;
27
}
28

    
29
.app-content .menu {
30
  background-color: #e0e9d8;
31
  border-right: #4B4B4B solid 2px;
32
}
33

    
34
.app-content .menu a {
35
  color: black;
36
  background-color: transparent;
37
}
38

    
39
.app-content .menu a:hover,
40
.app-content .menu a:focus {
41
  background-color: #bde48e;
42
  text-decoration: none;
43
  border-radius: 15px 50px 50px 15px;
44
}
45

    
46
.app-content .menu .active{
47
  background-color: #A5ca79;
48
  text-decoration: none;
49
  border-radius: 15px 50px 50px 15px;
50
}
51

    
52
.app-content .content {
53
  background-color: #ecf5e4;
54
  height: 100%;
55
  flex-direction: column;
56
}
57

    
58
.app-footer {
59
  text-align: center;
60
  background-image: linear-gradient( #A5ca79, #376039);
61
  height: 5%;
62
}
63

    
64
.modal-body {
65
  background-color: #ecf5e4;
66
}
67

    
68
.modal-header, .modal-footer {
69
  background-image: linear-gradient( #A5ca79, #376039);
70
}
71

    
72
.app-content .content .search-results {
73
  height: 100%;
74
  overflow: auto;
75
}
76

    
77
.app-content .content .search-results .action-td {
78
  width: 15%;
79
}
80

    
81
input, select {
82
  height: 90%;
83
  border-radius: 5px;
84
  border: 1px solid grey;
85
  margin-left: 2px;
86
  font-size: 14px;
87
  line-height: 20px;
88
  padding: 6px 12px;
89
}
90

    
91
.min-wdth {
92
  min-width: 200px;
93
}
94

    
95
.btn{
96
  background-color: #A5ca79;
97
}
98

    
99
select {
100
  padding: 6px 18px 6px 12px;
101
  appearance: none;
102
  background: url("http://localhost/aswi/application/view/img/select-ico.png") 96% / 20px no-repeat white;
103
}
104

    
105
/* Remove default arrow in Internet Explorer 10 and 11 */
106
select::-ms-expand {
107
  display: none;
108
}
109

    
110
/* Target Internet Explorer 9 to undo the custom arrow */
111
@media screen and (min-width:0\0) {
112
  select {
113
    background: none \9;
114
    padding: 5px \9;
115
  }
116
}
117

    
118
/*multis. jquery*/
119
.multi-select-container {
120
  min-width: 200px;
121
  display: inline-block;
122
  position: relative;
123
  margin-left: 2px;
124
  font-size: 14px;
125
  line-height: 20px;
126
}
127

    
128
.multi-select-menu {
129
  position: absolute;
130
  left: 0;
131
  top: 0.8em;
132
  float: left;
133
  min-width: 100%;
134
  background: #fff;
135
  margin: 1em 0;
136
  padding: 0.4em 6px;
137
  border: 1px solid #aaa;
138
  display: none;
139
  z-index: 20;
140
  overflow: hidden scroll;
141
}
142

    
143
.multi-select-menu input {
144
  margin-right: 0.3em;
145
  vertical-align: 0.1em;
146
}
147

    
148
.multi-select-button {
149
  border-radius: 5px;
150
  border: 1px solid grey;
151
  display: inline-block;
152
  font-size: 0.875em;
153
  padding: 6px 12px;
154
  min-width: 200px;
155
  max-width: 20em;
156
  white-space: nowrap;
157
  overflow: hidden;
158
  text-overflow: ellipsis;
159
  vertical-align: -0.5em;
160
  background-color: #fff;
161
  cursor: default;
162
}
163

    
164
.multi-select-button:after {
165
  content: "";
166
  display: inline-block;
167
  width: 0;
168
  height: 0;
169
  border-style: solid;
170
  border-width: 0.4em 0.4em 0 0.4em;
171
  border-color: #333333 transparent transparent transparent;
172
  margin-left: 0.4em;
173
  vertical-align: 0.1em;
174
  float: right;
175
  margin-top: 5%
176
}
177

    
178
.multi-select-container--open .multi-select-menu { display: block; }
179

    
(7-7/8)