|
|
@ -5,16 +5,21 @@ html, body { |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
body, input, button { |
|
|
|
font-family: 'Press Start 2P', cursive; |
|
|
|
font-size: 16px; |
|
|
|
} |
|
|
|
|
|
|
|
body { |
|
|
|
color: #333; |
|
|
|
color: #e8e6e3; |
|
|
|
margin: 0; |
|
|
|
padding: 8px; |
|
|
|
box-sizing: border-box; |
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
|
|
|
background-color: #212529; |
|
|
|
} |
|
|
|
|
|
|
|
a { |
|
|
|
color: rgb(0,100,200); |
|
|
|
color: #198754; |
|
|
|
text-decoration: none; |
|
|
|
} |
|
|
|
|
|
|
@ -23,7 +28,7 @@ a:hover { |
|
|
|
} |
|
|
|
|
|
|
|
a:visited { |
|
|
|
color: rgb(0,80,160); |
|
|
|
color: #157347; |
|
|
|
} |
|
|
|
|
|
|
|
label { |
|
|
@ -33,32 +38,40 @@ label { |
|
|
|
input, button, select, textarea { |
|
|
|
font-family: inherit; |
|
|
|
font-size: inherit; |
|
|
|
-webkit-padding: 0.4em 0; |
|
|
|
padding: 0.4em; |
|
|
|
padding: 0.4em 0; |
|
|
|
margin: 0 0 0.5em 0; |
|
|
|
box-sizing: border-box; |
|
|
|
border: 1px solid #ccc; |
|
|
|
border-radius: 2px; |
|
|
|
border: 1px solid #495057; |
|
|
|
border-radius: 4px; |
|
|
|
background-color: #343a40; |
|
|
|
color: #e8e6e3; |
|
|
|
} |
|
|
|
|
|
|
|
input:disabled { |
|
|
|
color: #ccc; |
|
|
|
color: #6c757d; |
|
|
|
} |
|
|
|
|
|
|
|
button { |
|
|
|
color: #333; |
|
|
|
background-color: #f4f4f4; |
|
|
|
color: #e8e6e3; |
|
|
|
background-color: #198754; |
|
|
|
border: none; |
|
|
|
cursor: pointer; |
|
|
|
padding: 0.5rem 1rem; |
|
|
|
border-radius: 4px; |
|
|
|
transition: background-color 0.2s ease-in-out; |
|
|
|
font-size: 1rem; |
|
|
|
outline: none; |
|
|
|
} |
|
|
|
|
|
|
|
button:disabled { |
|
|
|
color: #999; |
|
|
|
color: #6c757d; |
|
|
|
cursor: not-allowed; |
|
|
|
} |
|
|
|
|
|
|
|
button:not(:disabled):active { |
|
|
|
background-color: #ddd; |
|
|
|
background-color: #157347; |
|
|
|
} |
|
|
|
|
|
|
|
button:focus { |
|
|
|
border-color: #666; |
|
|
|
box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.25); |
|
|
|
} |