cyp/app/css/cyp.less

93 lines
1.5 KiB
Plaintext
Raw Normal View History

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;
}
}
2020-03-14 06:01:16 +08:00
input, select {
2019-04-01 04:02:26 +08:00
font: inherit;
2019-03-26 22:40:23 +08:00
}
2020-03-14 06:01:16 +08:00
select {
color: inherit;
}
2020-03-18 05:02:12 +08:00
option {
color: initial;
}
2019-03-26 22:40:23 +08:00
button {
2020-03-14 06:01:16 +08:00
color: inherit;
font: inherit;
2019-03-26 22:40:23 +08:00
-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;
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-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-17 05:57:13 +08:00
@import "elements/search.less";
2020-06-24 20:22:29 +08:00
@import "elements/filter.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";
2020-03-17 05:57:13 +08:00
@import "elements/yt-result.less";