mirror of
https://github.com/wahyd4/rss-visualizer.git
synced 2026-08-09 04:56:25 +10:00
47 lines
751 B
CSS
47 lines
751 B
CSS
body {
|
|
/*background-image: url(../images/bg01.jpg);*/
|
|
background-color: #0576dc;
|
|
text-shadow: 0px 1px 1px #111;
|
|
color: #fff;
|
|
font-family: "Lucida Grande";
|
|
overflow: hidden;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|
|
|
|
#container {
|
|
margin: 0 auto;
|
|
width: 70%;
|
|
margin-top: 6%;
|
|
position: relative;
|
|
}
|
|
|
|
article {
|
|
font-size: 36px;
|
|
width: 100%;
|
|
position: absolute;
|
|
/*-webkit-box-reflect: below 1px
|
|
-webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.6, transparent), to(white));*/
|
|
}
|
|
|
|
article img {
|
|
float: left;
|
|
}
|
|
|
|
.hide {
|
|
left: -3000px;
|
|
-webkit-transition-property: left;
|
|
-webkit-transition-duration: 2s;
|
|
}
|
|
|
|
.right {
|
|
margin-left: 500px;
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
} |