14
| <![CDATA[<style>
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 10px;
background: #F5F5F5;
}
h1 {
color: rgba(0,0,0,.1);
font-size: 12em;
margin: 0;
}
p {
color: #383436;
font-size: 1.8em;
margin: 0 0 10px;
}
a {
display: inline-block;
color: #ADA5A7;
font-size: 1.4em;
text-decoration: none;
padding: 6px 0;
border-bottom: solid 1px transparent;
}
a:hover {
border-color: #ccc;
}
.main {
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 350px;
text-align: center;
margin: -180px 0 0 -200px;
}
.footer {
position: absolute;
bottom: 20px;
left: 0;
width: 100%;
text-align: center;
}
@media screen and (max-width: 600px){
h1 {
font-size: 10em;
}
p {
font-size: 1.2em;
}
a {
font-size: 1.2em;
padding: 10px 20px;
border-bottom: 0;
}
.main {
width: 300px;
height: 220px;
margin: -130px 0 0 -150px;
}
.footer {
display: none;
}
}
</style>]]>
|