blob: 5e3a6d8f9e113555ce05566e8255ea10e9201b08 (
plain) (
tree)
|
|
/* stylesheet for 53hor.net */
/* google fonts */
@import url('https://fonts.googleapis.com/css?family=Arapey:400,400i|Fredericka+the+Great|Josefin+Sans:700');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script|Homemade+Apple|Reenie+Beanie');
:root {
/* custom colors */
--amy:#009999;
}
#topnav {
margin: 0;
padding: 0;
top: 0;
overflow: hidden;
background-color: rgba(0, 0, 0, 0.5);
text-align: center;
position: fixed;
width: 100%;
}
#topnav a {
display: inline-block;
text-align: center;
padding: 1em 1em;
text-decoration: none;
color: white;
transition: 0.5s;
font-family: 'Josefin Sans', sans-serif;
font-weight: 700;
font-style: bold;
font-size: 1em;
}
#topnav a:hover {
color: var(--amy);
}
html {
margin: 0;
padding: 0;
height: 100%;
}
body {
margin: 0;
padding: 0;
height: 100%;
background-repeat: no-repeat;
background-position: center bottom;
background-attachment: fixed;
background-size: cover;
}
article {
margin-top: 4em;
margin-left: 10%;
padding: 0;
height: 100%;
width: 80%;
}
figure {
margin: 1em;
padding: 1em;
background-color: white;
box-shadow: 0 0 5px black;
}
figure img {
width: 100%;
}
figure figcaption {
color: black;
text-align: right;
font-weight: 400;
font-size: 0.8em;
font-style: italic;
font-family: 'Arapey', serif;
}
p {
text-align: justify;
text-indent: 2em;
font-weight: 400;
font-size: 1em;
font-family: 'Arapey', serif;
background-color: white;
margin: 1em;
padding: 1em;
box-shadow: 0 0 5px black;
}
h1 { /* decorative page title */
font-weight: 400;
font-size: 4em;
font-family: 'Homemade Apple', cursive;
text-align: right;
color: white;
text-shadow: 3px 3px 3px black;
}
h2 { /* decorative page subtitle */
font-weight: 700;
font-size: 2em;
font-family: 'Josefin Sans', sans-serif;
text-align: right;
text-shadow: 3px 3px 3px black;
color: white;
}
h3 { /* section title */
font-weight: 400;
font-size: 3em;
font-family: 'Reenie Beanie', cursive;
color: white;
text-shadow: 3px 3px 3px black;
text-align: right;
margin: 1em;
}
|