52 lines
994 B
CSS
52 lines
994 B
CSS
|
html {
|
||
|
background-color: #fff;
|
||
|
background-image: url(../img/wallpaper.jpg);
|
||
|
background-size: cover;
|
||
|
background-repeat: no-repeat;
|
||
|
background-attachment: fixed;
|
||
|
display: block;
|
||
|
}
|
||
|
body {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
font-size: 16px;
|
||
|
|
||
|
color: #222;
|
||
|
background: #fff;
|
||
|
|
||
|
max-width: 600px;
|
||
|
margin: 0 auto;
|
||
|
padding: 12px;
|
||
|
padding-top: 7px;
|
||
|
|
||
|
box-shadow: 0 0 4px #222;
|
||
|
}
|
||
|
@media screen and (max-width: 622px) {
|
||
|
body {
|
||
|
padding: 7px;
|
||
|
box-shadow: 0 0 0;
|
||
|
}
|
||
|
html {
|
||
|
background-image: none;
|
||
|
}
|
||
|
}
|
||
|
a {
|
||
|
color: #208fe3;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: #689dff;
|
||
|
}
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
line-height: 1.2;
|
||
|
}
|
||
|
li {
|
||
|
line-height: 1.5;
|
||
|
}
|
||
|
hr {
|
||
|
border: 0;
|
||
|
height: 3px;
|
||
|
background-image: linear-gradient(to right, #fff, #208fe3, #fff);
|
||
|
}
|
||
|
.animate-top{
|
||
|
position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}
|
||
|
}
|