design/assets/css/blueprint.css

58 lines
1.1 KiB
CSS
Raw Normal View History

@charset "UTF-8";
@import url("../fonts/spacemono.css");
@import url("../fonts/firasans-regular.css");
html, body {
2021-10-17 23:12:49 +00:00
background-color: white;
font-family: "Space Mono", Monaco, monospace !important;
}
p {
2021-10-17 23:12:49 +00:00
font-family: "Fira Sans";
}
header {
background-image: url("../images/ronce/illustration-ronce_1200x765px.png");
height: 100vh;
width: 100vw;
/* Create the parallax scrolling effect */
/* background-attachment: fixed; */
background-position: center;
/* background-repeat: no-repeat; */
background-repeat: no-repeat;
background-size: cover;
2021-10-17 23:01:50 +00:00
margin-bottom: 5rem;
}
header > p {
2021-10-17 23:12:49 +00:00
width: 40%;
position: relative;
left: 55%;
bottom: -75%;
text-align: right;
}
2021-10-17 23:12:49 +00:00
header > nav {
background: none;
position: fixed;
width: 100vw;
}
2021-10-17 23:12:49 +00:00
nav.nav a {
font-weight: bold;
}
2021-10-17 23:12:49 +00:00
header > p, header > nav.nav a {
color: white;
/* color | offset-x | offset-y | blur-radius */
text-shadow: black 0px 0px 4px;
}
footer {
2021-10-17 23:12:49 +00:00
border-top: black solid 2px;
margin-top: 3rem;
padding-top: 2rem;
}