-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
style.css
75 lines (63 loc) · 1.18 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
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');
body {
font-family: 'Cabin';
background-color: #758190;
}
#tentacles {
width: 50px;
}
.header {
display: flex;
background-color: lightblue;
padding: 1%;
align-items: center;
margin-left: -10px;
margin-right: -10px;
margin-top: -10px;
}
.stats-container {
display: flex;
}
.stats-card {
background-color: #a8b0bc;
border-radius: 7px;
padding: 1%;
margin: 1%;
width: 100%;
text-align: center;
}
#num-contributions, #total-raised, #num-games {
font-size: 50px;
}
#games-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.game-img {
width: 100%;
border-radius: 5px;
box-shadow: 0 0 10px #FFFFFF;
}
.game-card {
background-color: #FFFFFF;
padding: 1%;
margin: 1%;
width: 300px;
text-align: center;
border-radius: 7px;
}
.game-card:hover {
cursor: pointer;
box-shadow: 0 0 30px lightblue;
}
#button-container {
text-align: center;
}
button {
font-family: 'Cabin';
border: none;
padding: 1%;
margin: 1%;
border-radius: 7px;
}