hoellen.eu/css/style.css

33 lines
553 B
CSS
Raw Normal View History

2016-02-06 02:04:22 +01:00
html {
height: 100%;
width: 100%;
}
body {
2016-02-06 02:11:42 +01:00
background: url("../img/background.jpg");
2016-02-06 02:04:22 +01:00
background-size: cover;
/*background-position: 0px -50px;*/
font-family: Lato;
overflow: hidden;
}
h1 {
font-size: 5em;
font-weight: 700;
}
.content {
width: 500px;
margin: 15% auto;
text-align: center;
text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
0px 8px 13px rgba(0,0,0,0.1),
0px 18px 23px rgba(0,0,0,0.1);
}
hr {
width: 400px;
border-top: 1px solid #f8f8f8;
border-bottom: 1px solid rgba(0,0,0,0.2);
2016-02-06 02:11:42 +01:00
}