quadfile/static/regular.css

130 lines
1.7 KiB
CSS
Raw Permalink Normal View History

2015-12-24 12:46:05 +00:00
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700);
/* Being lazy 101 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Open Sans", "Lato", sans-serif;
color: #ffffff;
2015-12-26 15:43:34 +00:00
background-color: #1d1d1d;
2015-12-24 12:46:05 +00:00
}
@keyframes rise {
from {margin-top: 50px;opacity:0;}
to {margin-top: 0;opacity:1;}
}
@keyframes appear {
from {opacity:0;}
to {opacity:1;}
}
.a4 {
width: 100%;
max-width: 920px;
padding: 15px;
margin-left: auto;
margin-right: auto;
animation: appear 0.75s ease-out;
}
.a4 .title {
font-size: 24pt;
font-weight: 300;
text-align: right;
margin: 0;
animation: rise 0.75s ease-out;
}
.title {
font-size: 34pt;
font-weight: 300;
margin-bottom: 20px;
text-align: center;
animation: appear 0.75s ease-out;
}
.links {
font-size: 0;
margin-top: 20px;
text-align: center;
list-style: none;
}
.links li {
font-size: 12pt;
display: inline-block;
padding: 5px;
width: 25%;
animation: rise 1s ease-out;
}
.links li a {
color: inherit;
text-decoration: none;
}
.links li a:hover {
text-decoration: underline;
}
.note {
text-align: center;
font-size: 8pt;
color: #AAAAAA;
animation: appear 0.75s ease-out;
}
2015-12-24 12:46:05 +00:00
/* Restyle with custom margins */
p {
margin-top: 5px;
margin-bottom: 10px;
}
h1 {
2015-12-24 14:26:55 +00:00
margin-top: 25px;
margin-bottom: 10px;
}
h2 {
margin-top: 25px;
2015-12-24 12:46:05 +00:00
margin-bottom: 5px;
}
2015-12-24 14:26:55 +00:00
.title a {
2015-12-24 12:46:05 +00:00
color: inherit;
text-decoration: none;
}
2015-12-24 14:26:55 +00:00
.title a:hover {
text-decoration: underline;
}
a {
color: #33BB33;
text-decoration: none;
}
2015-12-24 12:46:05 +00:00
a:hover {
text-decoration: underline;
2015-12-25 18:06:16 +00:00
}
ul {
list-style: none;
padding-left: 15px;
}
ul li:before {
content: "- ";
2015-12-28 15:38:13 +00:00
}
.dmca {
width: 100%;
height: auto;
padding: 10px;
2015-12-24 12:46:05 +00:00
}