2019-03-27 00:07:52 +08:00
|
|
|
*, *::before, *::after { box-sizing: inherit; }
|
|
|
|
|
2019-03-26 19:35:47 +08:00
|
|
|
html {
|
2019-03-29 23:28:26 +08:00
|
|
|
background-color: var(--fg);
|
2019-03-26 19:35:47 +08:00
|
|
|
}
|
|
|
|
|
2019-03-20 05:56:39 +08:00
|
|
|
body {
|
2020-03-09 05:11:46 +08:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-03-09 21:26:39 +08:00
|
|
|
main {
|
2020-03-11 21:21:04 +08:00
|
|
|
flex: auto;
|
2020-03-09 21:26:39 +08:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2019-04-16 15:03:42 +08:00
|
|
|
header, footer {
|
2020-03-11 21:21:04 +08:00
|
|
|
flex: none;
|
2019-04-16 15:03:42 +08:00
|
|
|
z-index: 1;
|
|
|
|
box-shadow: var(--box-shadow);
|
2019-03-22 23:17:10 +08:00
|
|
|
}
|
|
|
|
|
2020-03-09 21:26:39 +08:00
|
|
|
footer {
|
2020-03-11 05:11:36 +08:00
|
|
|
position: relative; // kotva pro cyp-commands
|
|
|
|
overflow: hidden; // vyjizdenici cyp-commands
|
2020-03-09 21:26:39 +08:00
|
|
|
height: 56px;
|
2020-03-10 17:07:30 +08:00
|
|
|
@media (max-width: @breakpoint-menu) {
|
2020-03-09 21:26:39 +08:00
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:40:23 +08:00
|
|
|
input, select, button {
|
|
|
|
color: inherit;
|
2019-04-01 04:02:26 +08:00
|
|
|
font: inherit;
|
2019-03-26 22:40:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2020-03-11 21:21:04 +08:00
|
|
|
&:not([hidden]) { display: flex; }
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
flex: none;
|
2019-04-03 01:19:46 +08:00
|
|
|
|
2019-03-26 22:40:23 +08:00
|
|
|
background-color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
line-height: 1;
|
|
|
|
cursor: pointer;
|
2020-03-10 18:41:29 +08:00
|
|
|
|
|
|
|
@media (hover: hover) {
|
|
|
|
&:not(:disabled):not(:hover):not(.-thumb) { opacity: 0.9; }
|
|
|
|
}
|
2019-04-01 04:02:26 +08:00
|
|
|
}
|
|
|
|
|
2019-04-03 01:52:53 +08:00
|
|
|
select {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid var(--fg);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
|
|
|
|
2019-03-26 19:35:47 +08:00
|
|
|
@import "font.less";
|
2019-03-28 22:23:28 +08:00
|
|
|
@import "icons.less";
|
2019-04-03 01:19:46 +08:00
|
|
|
@import "mixins.less";
|
2019-03-25 22:49:23 +08:00
|
|
|
@import "component.less";
|
|
|
|
@import "library.less";
|
2019-03-26 19:35:47 +08:00
|
|
|
@import "fs.less";
|
2019-04-01 04:02:26 +08:00
|
|
|
@import "search.less";
|
2019-04-01 17:18:28 +08:00
|
|
|
@import "art.less";
|
2019-03-29 23:28:26 +08:00
|
|
|
@import "variables.less";
|
2020-03-09 21:26:39 +08:00
|
|
|
|
2020-03-10 05:24:31 +08:00
|
|
|
@import "elements/app.less";
|
|
|
|
@import "elements/menu.less";
|
|
|
|
@import "elements/song.less";
|
|
|
|
@import "elements/player.less";
|
|
|
|
@import "elements/playlists.less";
|
|
|
|
@import "elements/queue.less";
|
|
|
|
@import "elements/settings.less";
|
|
|
|
@import "elements/yt.less";
|
|
|
|
@import "elements/range.less";
|
|
|
|
@import "elements/playlist.less";
|
2020-03-12 05:46:28 +08:00
|
|
|
@import "elements/library.less";
|
2020-03-13 06:03:26 +08:00
|
|
|
@import "elements/tag.less";
|
|
|
|
@import "elements/back.less";
|
|
|
|
@import "elements/path.less";
|