29 lines
361 B
CSS
29 lines
361 B
CSS
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
body, html {
|
|
text-align: center;
|
|
font-family: Times;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 20px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 300px;
|
|
border: 1px solid #666;
|
|
-moz-border-radius: 10px;
|
|
background: #eee;
|
|
}
|
|
|
|
.title {
|
|
border-bottom: 1px dotted #999;
|
|
font-size: 20px;
|
|
color: #f30;
|
|
}
|
|
|
|
.text {
|
|
font-size: 12px;
|
|
}
|