blob: f3e98ee466db1ea3b9612a3f587acab822037d51 (
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
|
@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;
}
header > p {
width: 40%;
position: relative;
left: 55%;
bottom: -80%;
color: white;
/* color | offset-x | offset-y | blur-radius */
text-shadow: black 0px 0px 4px;
text-align: right;
}
nav {
position: fixed;
}
footer {
border-top: black solid 2px;
margin-top: 3rem;
padding-top: 2rem;
}
|