31 lines
420 B
CSS
31 lines
420 B
CSS
.normal {
|
|
font: 14px/1.2 sans-serif;
|
|
max-width: 550px;
|
|
margin: 0 auto;
|
|
padding: 2em;
|
|
}
|
|
|
|
.normal h1 {
|
|
padding-bottom: 1em;
|
|
border-bottom: solid #ddd 1px;
|
|
}
|
|
|
|
.normal a { text-decoration: none }
|
|
.normal a:hover { background: #eeeeee }
|
|
|
|
.normal .info {
|
|
font-size: 0.9em;
|
|
color: #333333;
|
|
}
|
|
|
|
.normal img {
|
|
width: 100%;
|
|
}
|
|
|
|
.normal textarea {
|
|
width: 100%;
|
|
height: 10em;
|
|
background: #eee;
|
|
border: solid #aaa 1px;
|
|
}
|
|
|