geometria-solida/main.css

65 lines
873 B
CSS
Raw Normal View History

2014-05-26 01:18:22 +02:00
@import url(http://fonts.googleapis.com/css?family=PT+Serif:400,700);
2014-05-25 21:25:36 +02:00
body {
font-family: "PT Serif", serif;
2014-05-26 00:28:11 +02:00
font-size: 1.1em;
2014-05-25 21:25:36 +02:00
color: #555;
2014-05-26 00:41:41 +02:00
background: #777;
2014-05-25 21:25:36 +02:00
}
h1 {
text-transform: uppercase;
text-align: center;
}
2014-05-26 00:28:11 +02:00
2014-05-25 21:25:36 +02:00
h1, h2{
color: #454545;
}
2014-05-26 00:28:11 +02:00
p {
margin-top: 2em;
margin-bottom: 2em;
}
2014-05-26 00:41:41 +02:00
a {
transition: color .2s ease
}
a:link, a:visited {
color: #fff;
text-decoration: none
}
a:hover {
color: #aaa;
text-decoration: underline;
}
2014-05-25 21:25:36 +02:00
img {
border: 6px solid #dfdfdf;
border-radius: 5px;
width: 70%;
margin-left: 15%;
}
#container {
2014-05-26 00:28:11 +02:00
width: 38em;
2014-05-25 21:25:36 +02:00
margin: 2em;
margin-left: auto;
margin-right: auto;
background: #fff;
2014-05-26 00:41:41 +02:00
padding: 3.5em;
2014-05-25 21:25:36 +02:00
border-radius: 3px;
2014-05-26 00:13:25 +02:00
box-shadow: 0 4px 5px 0 #555
2014-05-25 21:25:36 +02:00
}
2014-05-26 00:41:41 +02:00
footer {
text-align: center;
margin: auto;
margin-top: 2em;
margin-bottom: 2em;
padding: .5em;
width: 25em;
border-top: 2px solid #fff;
font-size: .9em;
}