kerstezel-ober/statisch/stijl.css
2020-12-28 21:43:03 +01:00

52 lines
864 B
CSS

/**
* Copyright Chris Josten 2020
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* https://www.boost.org/LICENSE_1_0.txt)
*/
html {
background-color: red;
color: green;
}
body {
font-family: "sans-serif";
}
main {
margin: 2em auto;
max-width: 600px;
padding: 1.5em;
border-image: url("rand-klein.png") 70 65 / 80px / 30px round;
border-style: solid;
background-color: cyan;
}
button {
border: 10px outset green;
background-color: green;
color: white;
font-size: 1.5em;
text-transform: uppercase;
font-weight: bold;
width: 100%;
}
img {
width: 100%;
}
p {
font-weight: bold;
}
button:disabled {
background-color: darkgreen;
border-style: groove;
color: red;
cursor: wait;
}
button:active, button:active:not(:disabled) {
border-style: inset;
}