74 lines
1.1 KiB
CSS
74 lines
1.1 KiB
CSS
* {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
box-sizing: inherit;
|
|
color: inherit;
|
|
line-height: inherit;
|
|
}
|
|
|
|
a {
|
|
color: yellow;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 200%;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
body {
|
|
max-width: 1024px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
font-family: Tahoma, Helvetica, Arial;
|
|
font-size: 1.2em;
|
|
box-sizing: border-box;
|
|
background: #24f;
|
|
color: white;
|
|
line-height: 150%;
|
|
}
|
|
|
|
form > div, label {
|
|
display: block;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
input, textarea {
|
|
background: rgba(0,0,0,0.2);
|
|
border: 2px solid rgba(255,255,255,0.2);
|
|
}
|
|
|
|
input[type=submit], button {
|
|
padding: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type=submit]:hover, button:hover {
|
|
color: yellow;
|
|
background: rgba(0,0,0,0.5);
|
|
}
|
|
|
|
input[type=text], textarea {
|
|
padding: 8px;
|
|
width: 100%;
|
|
}
|
|
|
|
input[type=text]:hover, textarea:hover {
|
|
background: rgba(0,0,0,0.25);
|
|
}
|
|
|
|
textarea {
|
|
height: 20%;
|
|
}
|
|
|
|
pre {
|
|
height: 20%;
|
|
overflow: auto;
|
|
padding: 8px;
|
|
border: 2px solid rgba(0,0,0,0.2);
|
|
background: rgba(100,100,100,0.15);
|
|
font-family: monospace;
|
|
white-space: pre-wrap;
|
|
}
|