generator-aristos
Version:
create aristos cms fast with yeoman generator.
81 lines (68 loc) • 1.49 kB
CSS
.admin-table {
width: 100%;
text-align: center;
border-spacing: 0;
&__image-preview {
width: 100px;
height: 100px;
}
th {
border-top: 1px solid $colorThree;
border-bottom: 2px solid $colorThree;
background: $colorTwo;
color: $colorFive;
padding: 5px;
font-size: 20px;
font-variant: small-caps;
}
& tbody tr:nth-child(odd) {
background: #fff;
}
& td {
border-right: 1px solid $colorThree;
border-bottom: 1px solid $colorThree;
color: $colorFive;
vertical-align: middle;
}
&__complete-stuffs a {
display: flex;
padding: 10px;
justify-content: center;
transition: background 0.4s linear;
&:hover {
background: $hoverSuccess;
color: $colorFour;
transition: background 0.4s linear;
}
}
&__delete-stuffs form {
display: flex;
justify-content: center;
transition: background 0.4s linear;
& button {
padding: 10px;
background: transparent;
border: none;
display: flex;
cursor: pointer;
flex: 1;
justify-content: center;
}
&:hover {
background: $hoverDanger;
color: $colorFour;
transition: background 0.4s linear;
}
}
&__edit-stuffs a {
padding: 10px;
display: flex;
justify-content: center;
transition: background 0.4s linear;
&:hover {
background: $colorFive;
color: $colorFour;
transition: background 0.4s linear;
}
}
}