id/styles/design.css
2023-11-06 16:38:18 +00:00

48 lines
756 B
CSS

/* This file holds the look and feel for ByeCorps products.
(c) 2023 ByeCorps. All rights reserved.
*/
button, .button {
border: none;
padding: 15px 32px;
margin: 4px 2px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
}
header a {
text-decoration: none;
}
/* inputs */
input {
all: unset;
padding: 1em;
text-align: start;
border-radius: 1em;
}
input[type="checkbox"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
-ms-appearance: checkbox;
-o-appearance: checkbox;
appearance: checkbox;
width: 1em;
height: 1em;
margin: 0 0.5em 0 0;
}
input:disabled {
opacity: 0.75;
cursor: not-allowed;
}