mirror of https://github.com/byecorps/id.git
48 lines
756 B
CSS
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;
|
|
}
|