54 lines
843 B
CSS
54 lines
843 B
CSS
.settings .item-box {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.settings-password {
|
|
margin-right: 15px;
|
|
}
|
|
.settings-message {
|
|
color: white;
|
|
}
|
|
.settings-message-angry {
|
|
background-color: firebrick;
|
|
}
|
|
|
|
.settings-message-happy {
|
|
background-color: forestgreen;
|
|
|
|
}
|
|
|
|
|
|
.settings li {
|
|
margin: 5px;
|
|
}
|
|
|
|
.settings textarea {
|
|
resize: none;
|
|
}
|
|
|
|
.settings label {
|
|
width: 175px;
|
|
display: inline-block;
|
|
text-align: right;
|
|
}
|
|
|
|
.settings-password, .settings-email {
|
|
width: calc(50% - 60px);
|
|
display: inline-flex;
|
|
}
|
|
|
|
.settings-password label, .settings-email label {
|
|
text-align: left;
|
|
}
|
|
|
|
/* All the fields for typing things. */
|
|
.settings input[type="password"],
|
|
.settings input[type="text"],
|
|
.settings input[type="date"],
|
|
.settings input[type="email"] {
|
|
width: 200px;
|
|
}
|
|
|
|
.settings textarea {
|
|
width: calc(100% - 350px);
|
|
} |