Projekt

Obecné

Profil

Stáhnout (3.13 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
.app-content .menu {
26
  background-color: #e0e9d8;
27
  border-right: #4B4B4B solid 2px;
28
}
29

    
30
.app-content .menu a {
31
  color: black;
32
  background-color: transparent;
33
}
34

    
35
.app-content .menu a:hover,
36
.app-content .menu a:focus {
37
  background-color: #bde48e;
38
  text-decoration: none;
39
  border-radius: 15px 50px 50px 15px;
40
}
41

    
42
.app-content .menu .active{
43
  background-color: #A5ca79;
44
  text-decoration: none;
45
  border-radius: 15px 50px 50px 15px;
46
}
47

    
48
.app-content .content {
49
  background-color: #ecf5e4;
50
  height: 100%;
51
  flex-direction: column;
52
}
53

    
54
.app-footer {
55
  text-align: center;
56
  background-image: linear-gradient( #A5ca79, #376039);
57
  height: 5%;
58
}
59

    
60
.modal-body {
61
  background-color: #ecf5e4;
62
}
63

    
64
.modal-header, .modal-footer {
65
  background-image: linear-gradient( #A5ca79, #376039);
66
}
67

    
68
.app-content .content .search-results {
69
  height: 100%;
70
  overflow: auto;
71
}
72

    
73
.app-content .content .search-results .action-td {
74
  width: 15%;
75
}
76

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

    
87
.min-wdth {
88
  min-width: 200px;
89
}
90

    
91
.btn{
92
  background-color: #A5ca79;
93
}
94

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

    
101
/* Remove default arrow in Internet Explorer 10 and 11 */
102
select::-ms-expand {
103
  display: none;
104
}
105

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

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

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

    
139
.multi-select-menu input {
140
  margin-right: 0.3em;
141
  vertical-align: 0.1em;
142
}
143

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

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

    
174
.multi-select-container--open .multi-select-menu { display: block; }
175

    
(7-7/7)