adhara
Version:
foundation for any kind of website: microframework
116 lines • 2.21 kB
CSS
.pointer {
cursor: pointer;
}
[route] {
cursor: pointer;
}
.centre-vertical {
display: flex;
justify-content: center;
}
.centre-horizontal {
display: flex;
align-items: center;
}
.centre-all {
display: flex;
justify-content: center;
align-items: center;
}
.centre-all-row {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
.centre-all-column {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.adhara-dialog .modal-title {
float: left;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.float-right {
float: right;
}
.float-left {
float: left;
}
.float-none {
float: none;
}
.table-actions-container {
display: flex;
}
.table-actions-container .table-actions {
margin: 1.2em 5px 1.2em 0;
}
.list-search {
border: none;
border-bottom: 3px solid;
min-width: 200px;
transition: all 0.2s ease;
}
.list-search.active {
min-width: 300px;
transition: all 0.2s ease;
}
.flex-1 {
flex: 1;
}
.tab-content {
margin-top: 1rem;
}
.repeater.repeater-horizontal .repeater-fieldset {
position: relative;
}
.repeater.repeater-horizontal .repeater-fieldset .modifiers {
position: absolute;
z-index: 1;
right: 5px;
top: -10px;
}
.repeater .repeater-fieldset-container:first-child .modifiers:nth-child(2) {
margin-top: 1.5rem;
}
.repeater .repeater-fieldset-container .repeater-fieldset {
padding-right: 16px;
}
.repeater .repeater-fieldset-container .modifiers {
justify-content: center;
align-items: center;
}
.repeater .repeater-fieldset-container .modifiers .modifier {
width: 20px;
height: 20px;
margin: 1px;
cursor: pointer;
}
.repeater .repeater-fieldset-container .modifiers .modifier:after {
background: #e5e5e5;
width: 16px;
height: 16px;
font-size: 13px;
display: flex;
justify-content: center;
align-items: center;
margin: 1px;
cursor: pointer;
}
.repeater .repeater-fieldset-container .modifiers .modifier.add:after {
content: "+";
}
.repeater .repeater-fieldset-container .modifiers .modifier.remove:after {
content: "-";
}
.pointer {
cursor: pointer;
}
/*# sourceMappingURL=adhara.css.map */