blob: f4452d66a1c0af0b36165c95d5d59037414694ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
@charset "UTF-8";
@import url("../fonts/spacemono.css");
@import url("../fonts/firasans-regular.css");
html, body {
background-color: white;
font-family: "Space Mono", Monaco, monospace !important;
}
p {
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;
margin-bottom: 5rem;
}
header > p {
width: 40%;
position: relative;
left: 55%;
bottom: -75%;
text-align: right;
}
header > nav {
background: none;
position: fixed;
width: 100vw;
}
nav.nav a {
font-weight: bold;
}
header > p, header > nav.nav a {
color: white;
/* color | offset-x | offset-y | blur-radius */
text-shadow: black 0px 0px 4px;
}
footer {
border-top: black solid 2px;
margin-top: 3rem;
padding-top: 2rem;
}
|