mnml/client/assets/styles/account.less
2019-09-06 12:13:54 +10:00

66 lines
1.1 KiB
Plaintext

@import 'colours.less';
.account {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 0 1em;
button {
display: block;
// height: 3em;
width: 75%;
}
input {
width: 75%;
height: 3em;
display: block;
}
.unsub {
&:hover {
color: @red;
border-color: @red;
};
&:active, &.confirming {
background: @red;
color: black;
border: 1px solid black;
}
}
.list {
letter-spacing: 0.25em;
text-transform: uppercase;
figure {
width: 75%;
display: flex;
flex-flow: column;
margin-bottom: 1em;
button {
width: 100%;
}
}
}
}
.stripe-btn {
background: @yellow;
color: black;
border-radius: 2px;
border-width: 0;
&:active, &:focus, &:hover {
color: black;
}
&[disabled] {
border: 1px solid @yellow;
color: @yellow;
background: black;
}
}