Files
Alfis/src/webview/styles.css
T

88 lines
1.1 KiB
CSS
Raw Normal View History

2021-03-29 11:10:48 +02:00
html {
overflow-y: hidden;
}
html,
body {
height: 100%;
margin: 0;
}
.main {
display: flex;
flex-flow: column;
height: 100%;
padding-top: 10pt;
}
.main .row {
/*border: 1px dotted grey;*/
}
.main .row.header {
flex: 0 1 auto;
}
.main .row.page {
display: flex;
flex-flow: column;
flex: 1 1 auto;
margin-left: 10pt;
margin-right: 10pt;
2021-03-29 11:10:48 +02:00
overflow-y: auto;
2021-04-10 21:11:59 +02:00
padding: 0.2rem;
2021-03-29 11:10:48 +02:00
}
.main .row.status {
flex: 0 1 auto;
background-color: #f4f4f4;
padding: 0.2rem 0.5rem 0.2rem 0.5rem;
}
/* ========================================== */
2021-03-24 19:06:22 +01:00
.container {
margin: 10pt;
}
.notification {
position: absolute;
z-index: 100;
width: 50%;
2021-03-25 20:55:09 +01:00
}
.notification.is-warning {
position: absolute;
2021-03-24 19:06:22 +01:00
top: 10pt;
right: 10pt;
}
2021-03-25 20:55:09 +01:00
.notification.is-success {
position: absolute;
bottom: 30pt;
2021-03-25 20:55:09 +01:00
right: 10pt;
}
.list {
overflow-y: auto;
2021-03-26 12:39:19 +01:00
}
path {
fill: #4a4a4a;
}
.tabs > ul > li.is-active > a > span.icon > svg > path {
fill: #3273dc;
}
.control > span.icon > svg > path {
fill: #dbdbdb;
}
.is-danger > span.icon > svg > path {
fill: #f14668;
}
.is-danger:hover > span.icon > svg > path {
fill: #ffffff;
2021-03-24 19:06:22 +01:00
}