forked from mattsandovalb/WheelOfDoom_DoomPatrol-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (39 loc) · 789 Bytes
/
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
:root{
/* COLORS */
--red-dark:#2A0609;
--purple:#3A1421;
--red:#85160C;
--salmon:#B86450;
--red-light:#E93F33;
--white:white;
--black: #190002;
/* FONT-TYPE */
--retro-font:'Press Start 2P', cursive;
--orbitron-font:'Orbitron', sans-serif;
}
.page_display {
background-image: url(./assets/img/background_image.png);
height: 100vh;
object-fit: cover;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.home_logo {
display: flex;
justify-content: center;
}
.home_logo img {
height: 90%;
width: 90%;
}
.start_button {
display: flex;
justify-content: center;
}
.start_button img {
height: 90%;
width: 90%;
}