-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (36 loc) · 839 Bytes
/
style.css
File metadata and controls
45 lines (36 loc) · 839 Bytes
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
/*
Make colors based off of image
Use CSS vars
EM or REM for text shadow?
Sleep more (1am hours...)
*/
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Hanken Grotesk", "calibri", sans-serif;
&::selection {
background: rgba(21, 127, 184, 0.66);
}
}
html {
height: 100%;
}
body {
height: 100%;
/* learn about viewports and about containing blocks */
/* height: 100vw; */
display: grid;
place-items: center;
/* use image-set instead */
background-color: rgb(20, 21, 21);
background-image: url(./background.jpg);
background-position: center;
background-size: 50%;
background-repeat: no-repeat;
}
h1 {
color: rgb(238, 240, 241);
text-shadow: 0 2px .5em rgb(20, 21, 21);
font-size: 2.5rem;
}