46 lines
630 B
CSS
46 lines
630 B
CSS
.container {
|
|
margin: 10pt;
|
|
}
|
|
|
|
.notification {
|
|
position: absolute;
|
|
z-index: 100;
|
|
width: 50%;
|
|
}
|
|
|
|
.notification.is-warning {
|
|
position: absolute;
|
|
top: 10pt;
|
|
right: 10pt;
|
|
}
|
|
|
|
.notification.is-success {
|
|
position: absolute;
|
|
bottom: 10pt;
|
|
right: 10pt;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #f4f4f4;
|
|
padding: 0.2rem 0.5rem 0.2rem 0.5rem;
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0px;
|
|
z-index: 9;
|
|
}
|
|
|
|
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;
|
|
} |