61 lines
997 B
Plaintext
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;
|
|
}
|
|
}
|