-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (54 loc) · 2.07 KB
/
style.css
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
59
60
61
62
63
64
65
66
67
68
:root {
--wooden: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Horror/wooden.jpg);
--forest: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Horror/forest.jpg);
--sweets: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Cute/sweets1.jpg);
--bubbles: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Cute/bubbles.jpg);
--crackle: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Minimalist/crackle.jpg);
--sparkle: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Minimalist/sparkle.jpg);
--rainbow: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Rainbow/rainbow-paint.jpg);
--smoke: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Rainbow/rainbow-smoke.jpg);
--nightsky: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Sleek/nightsky.jpg);
--sunset: url(https://scrimba.ams3.digitaloceanspaces.com/assets/courses/gdegree/Sleek/sunset.jpg);
/* COLORS */
--blood: #8a0303;
--slime: #228B22;
--gloom: #2B363B;
--candy: #ee698e;
--purple: #7B1E7A;
--blue: #2176AE;
--olive: #A6C48A;
--royal: #0A1045;
--lilac: #B8AED6;
--snow: #d8e70d;
/* FONTS */
--scary-font: 'Metal Mania';
--typewriter-font: 'Inconsolata';
--funny-font: 'Balsamiq Sans';
--curly-font: 'Pacifico';
--old-style-font: 'Cinzel';
--simple-font: 'Noto Sans HK';
--funky-font: 'MuseoModerno';
--sweet-font: 'Lobster';
}
body {
/*
CHALLENGE: change the background to one you like
*/
--background-image: var(--forest);
/*
CHALLENGE: change the main color to one you like!
*/
--main-color: var(--snow);
/*
CHALLENGE: change the font to one you think is cool
*/
/* font-family: var(--simple-font); */
font-family: var(--scary-font);
}
.grid {
column-count: 3;
column-gap: 8px;
}
.img {
border-image: var(--nightsky) 100;
}