mnml/client/assets/styles/account.less
2019-12-24 18:01:32 +10:00

61 lines
997 B
Plaintext

.account {
grid-template-columns: 1fr 1fr 1fr 1fr;
div {
padding-right: 1em;
// display: flex;
// flex-flow: column;
line-height: 2em;
}
h3 {
// text-transform: uppercase;
margin-bottom: 0.5em;
}
button {
width: 100%;
height: 2.5em;
display: block;
}
input {
width: 100%;
height: 2.5em;
display: block;
}
.unsub {
&:hover {
color: @red;
border-color: @red;
};
&:active, &.confirming {
background: @red;
color: black;
border: 1px solid black;
}
}
.list {
grid-template-columns: 1fr;
}
}
.yellow-btn {
background: @yellow;
color: black;
border-width: 0;
&:active, &:focus, &:hover {
color: black;
}
&[disabled] {
border: 0.1em solid @yellow;
color: @yellow;
background: black;
}
}