91 lines
1.8 KiB
CSS
Executable File
91 lines
1.8 KiB
CSS
Executable File
html, body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
color: #eee;
|
|
background: #121212;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap; /* Since CSS 2.1 */
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
white-space: -pre-wrap; /* Opera 4-6 */
|
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
}
|
|
|
|
a {
|
|
color: #eee;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: gray;
|
|
}
|
|
|
|
/* MARQUEE */
|
|
.marquee {
|
|
height: 50px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background: #fefefe;
|
|
color: #333;
|
|
border: 1px solid #4a4a4a;
|
|
}
|
|
|
|
.marquee p {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
-moz-transform: translateX(100%);
|
|
-webkit-transform: translateX(100%);
|
|
transform: translateX(100%);
|
|
-moz-animation: scroll-left 2s linear infinite;
|
|
-webkit-animation: scroll-left 2s linear infinite;
|
|
animation: scroll-left 20s linear infinite;
|
|
}
|
|
|
|
@-moz-keyframes scroll-left {
|
|
0% {
|
|
-moz-transform: translateX(100%);
|
|
}
|
|
100% {
|
|
-moz-transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes scroll-left {
|
|
0% {
|
|
-webkit-transform: translateX(100%);
|
|
}
|
|
100% {
|
|
-webkit-transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
@keyframes scroll-left {
|
|
0% {
|
|
-moz-transform: translateX(100%);
|
|
-webkit-transform: translateX(100%);
|
|
transform: translateX(100%);
|
|
}
|
|
100% {
|
|
-moz-transform: translateX(-100%);
|
|
-webkit-transform: translateX(-100%);
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
.header {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.leftSection, .mainSection, .rightSection {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.post-text {
|
|
font: normal normal 13px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
|
|
} |