You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
830 B
CSS

* {
box-sizing: border-box;
}
body {
font-family:sans-serif;
margin: 25px;
color: #222;
background-color: #f5f5f5;
}
h1 {
font-weight: bold;
}
p {
max-width: 900px;
}
form {
margin-bottom: 25px;
padding: 15px;
background-color: #87D37C;
display: inline-block;
width: 100%;
max-width: 340px;
border-radius: 5px;
}
input {
display: block;
margin-bottom: 10px;
padding: 5px;
width: 100%;
border: 1px solid lightgrey;
border-radius: 3px;
font-size: 16px;
}
input[type=submit] {
font-size: 16px;
border-radius: 3px;
background-color: #E4F1FE;
border: 1px solid grey;
box-shadow: 2px 2px #999;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #FFFEC4;
}
code {
font-family: monospace;
font-size: 1.2em;
background-color: #FFFEC4;
padding: 2px;
}