33 lines
445 B
CSS
33 lines
445 B
CSS
|
body {
|
||
|
font-family: "PT Serif", serif;
|
||
|
font-size: 1.2em;
|
||
|
color: #555;
|
||
|
background: #afafaf;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
text-transform: uppercase;
|
||
|
text-align: center;
|
||
|
}
|
||
|
h1, h2{
|
||
|
color: #454545;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
border: 6px solid #dfdfdf;
|
||
|
border-radius: 5px;
|
||
|
width: 70%;
|
||
|
margin-left: 15%;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
width: 36em;
|
||
|
margin: 2em;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
background: #fff;
|
||
|
padding: 2em;
|
||
|
border-radius: 3px;
|
||
|
box-shadow: 4px 5px 6px 0px #555
|
||
|
}
|