mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-05 10:58:59 +08:00
776103068f
PUBLISHED_FROM=54f54211919bb2276e02b4d10306ffa5540a9313
67 lines
864 B
CSS
67 lines
864 B
CSS
* {
|
|
outline: none;
|
|
}
|
|
|
|
body {
|
|
background: #36c;
|
|
color: #555;
|
|
margin: 0;
|
|
padding: 0;
|
|
font: 16px/1.4 Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
div.content {
|
|
width: 800px;
|
|
margin: 1em auto;
|
|
padding: 2em;
|
|
background-color: #fff;
|
|
border-radius: 1em;
|
|
}
|
|
|
|
fieldset {
|
|
border: 1px solid #ccc;
|
|
padding: 1em;
|
|
}
|
|
|
|
fieldset legend {
|
|
font-style: italic;
|
|
color: silver;
|
|
}
|
|
|
|
fieldset label {
|
|
text-align: right;
|
|
padding: 0 1em;
|
|
}
|
|
|
|
input[type=text] {
|
|
font-size: 100%;
|
|
padding: 0.2em;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
button {
|
|
color: #666;
|
|
background: #eee;
|
|
border: 1px solid #ccc;
|
|
padding: 0.2em 2em;
|
|
font-size: 100%;
|
|
cursor: pointer;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
button:hover {
|
|
background: #ccc;
|
|
}
|
|
|
|
code {
|
|
background: #f0f0f0;
|
|
padding: 0 0.3em;
|
|
color: #396;
|
|
border-radius: 0.3em;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
color: #69c;
|
|
text-decoration: none;
|
|
}
|