Files
Alfis/src/webview/styles.css
T

140 lines
2.0 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;
min-height: 42px;
}
.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-04-28 13:07:13 +02:00
@media screen and (min-width: 769px) {
.modal-content,
.modal-card {
width: 100%;
max-width: calc(100vw - 60px);
}
}
.modal-background {
background-color: rgba(10, 10, 10, 0.76);
}
#new_domain_dialog_box {
min-height: 380px;
}
.delete {
position: absolute;
top: 1.0rem;
right: 1.25rem;
}
2021-04-28 14:20:09 +02:00
/*.tabs li.is-active a {
border-bottom-color: #3298dc;
color: #3298dc;
}*/
2021-03-24 19:06:22 +01:00
.container {
margin: 10pt;
}
2021-04-27 18:04:11 +02:00
.textarea {
overflow-y: auto;
}
.message {
min-height: 2rem;
}
2021-03-24 19:06:22 +01:00
.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;
}
.container.is-fluid.cards-container {
display: flex;
flex-grow: 0;
/*gap: .8em; supported only in Firefox/Edge/Chrome */
justify-content: center !important;
padding-left: 0 !important;
padding-right: 0 !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
.container.is-fluid.cards-container .card:not(:last-child) {
margin-right: 0.8rem;
}
.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;
}