-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (69 loc) · 1.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&family=VT323&display=swap');
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-family: 'Silkscreen', cursive;
background-color: antiquewhite;
}
#game-description {
width: 50%;
margin-top: 5%;
padding-top: 5%;
margin-bottom: 14%;
position: relative;
left: 24%;
flex-direction: row;
}
i {
font-size: 300%;
font-weight: 900;
}
span i {
font-size: 150%;
font-weight: 900;
}
#game-description h1 {
font-size: 340%;
}
#game-description p {
position: relative;
width: 80%;
}
.active {
background-color: #8F7AB6;
}
.btn {
background-color: #462C74;
font-family: 'Silkscreen', cursive;
font-size: 100%;
color: rgb(57, 57, 57);
padding: 15px 10px 15px 10px;
border: #462C74;
border-radius: 3%;
cursor: pointer;
box-shadow: 5px 5px 2px rgba(83, 83, 83, 0.3);
}
input[type=button] {
color: rgb(177, 177, 177);
}
#up-btns {
width: 960px;
margin-top: 2%;
margin-bottom: 2%;
display: flex;
justify-content: space-between;
flex-direction: row;
}
footer {
padding: 15px 10px 15px 10px;
font-size: 0.5rem;
}
a {
color: rgb(248, 183, 15);
text-decoration: none;
}