.client {
background-color: #bcdaf8;
- border: 2px solid black;
+ border-radius: 4px;
padding-right: 5px;
padding-bottom: 5px;
}
display: flex;
flex-direction: column;
background-color: #79b5e7;
- border: 1px solid black;
+ border-radius: 4px;
padding-right: 2px;
padding-bottom: 2px;
}
/* Form elements for commands */
/* ************************** */
input, select {
- background-color: #35bfd3;
-}
-input::selection {
- background-color: #d69ae2;
+ background-color: #a7e0ec;
}
input[readonly] {
background-color: #79b5e7;
}
input:hover, input:focus, select:hover, select:focus {
- background-color: #afa7ec;
+ background-color: #d7d2fb;
+}
+input[readonly]:hover, input[readonly]:focus {
+ background-color: #79b5e7;
}
input[type="submit"] {
- border: 1px solid #0f4a53;
+ border: 1px solid black;
border-radius: 12px;
padding: 2px;
}
-input[type="submit"]:hover, input[type="submit"]:focus {
- border: 1px solid #44405e;
-}
input[type="text"], input[type="number"] {
min-width: 5px;