128 lines
2.1 KiB
CSS
128 lines
2.1 KiB
CSS
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||
|
v2.0 | 20110126
|
||
|
License: none (public domain)
|
||
|
*/
|
||
|
|
||
|
html, body, div, span, applet, object, iframe,
|
||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||
|
a, abbr, acronym, address, big, cite, code,
|
||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||
|
small, strike, strong, sub, sup, tt, var,
|
||
|
b, u, i, center,
|
||
|
dl, dt, dd, ol, ul, li,
|
||
|
fieldset, form, label, legend,
|
||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||
|
article, aside, canvas, details, embed,
|
||
|
figure, figcaption, footer, header, hgroup, input,
|
||
|
menu, nav, output, ruby, section, summary,
|
||
|
time, mark, audio, video {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
outline: none;
|
||
|
text-decoration: none;
|
||
|
font-size: 100%;
|
||
|
font: inherit;
|
||
|
vertical-align: baseline;
|
||
|
}
|
||
|
|
||
|
/* HTML5 display-role reset for older browsers */
|
||
|
article, aside, details, figcaption, figure,
|
||
|
footer, header, hgroup, menu, nav, section {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
ol, ul {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
blockquote, q {
|
||
|
quotes: none;
|
||
|
}
|
||
|
|
||
|
blockquote:before, blockquote:after,
|
||
|
q:before, q:after {
|
||
|
content: '';
|
||
|
content: none;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
border-spacing: 0;
|
||
|
}
|
||
|
|
||
|
/* boring text stuff */
|
||
|
|
||
|
h1 {
|
||
|
font-size: 2.5em;
|
||
|
}
|
||
|
|
||
|
h2, button {
|
||
|
font-size: 2em;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
font-size: 1.5em;
|
||
|
}
|
||
|
|
||
|
h4 {
|
||
|
font-size: 1.2em;
|
||
|
}
|
||
|
|
||
|
h5 {
|
||
|
font-size: 0.9em;
|
||
|
}
|
||
|
|
||
|
h6 {
|
||
|
font-size: 0.7em;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6, p, input, code, button {
|
||
|
font-family: "Montserrat";
|
||
|
color: #FFFFFF;
|
||
|
}
|
||
|
|
||
|
/* styling begins */
|
||
|
body {
|
||
|
background: #060008;
|
||
|
line-height: 1.8;
|
||
|
max-width: 70vw;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.star { color: #CBD7F1; }
|
||
|
.light { color: #FEFDC1; }
|
||
|
|
||
|
.buttons {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
.buttons>a {
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
border: 0;
|
||
|
height: 3px;
|
||
|
width: 35vw;
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
@keyframes movinggradient {
|
||
|
from {background-position: 35vw;}
|
||
|
to {background-position: 0px;}
|
||
|
}
|
||
|
|
||
|
.movinggradient {
|
||
|
background-image: repeating-linear-gradient(to left, #4b4b88, #4b884b, #88884b, #885F4B, #884b4b, #4b4b88);
|
||
|
background-position: 0px;
|
||
|
animation: movinggradient 1s linear infinite;
|
||
|
}
|
||
|
|