forked from codepath/web102_prework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (80 loc) · 1.54 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
82
83
84
85
86
87
88
89
90
91
92
93
94
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');
body {
font-family: 'Cabin';
background-color: #0d0e1e;
color: #e6f1ee;
}
#tentacles {
width: 50px;
}
.mx {
margin-left: 1%;
margin-right: 1%;
}
.header {
display: flex;
background-color: #a8cfc5;
color: #070d0b;
padding: 1%;
align-items: center;
margin-left: -10px;
margin-right: -10px;
margin-top: -10px;
}
.stats-container {
display: flex;
align-items: center;
cursor: pointer;
transition: box-shadow 0.4s ease;
}
.stats-container:hover {
box-shadow: 0 0 30px lightblue;
border-radius: 7px;
}
.stats-card {
background-color: #2B4B4F;
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 lightblue;
}
.game-card {
background-color: #76a4b4;
color: #070d0b;
padding: 1%;
margin: 1%;
width: 300px;
text-align: center;
border-radius: 7px;
transition: box-shadow 0.4s ease;
}
.game-card:hover {
cursor: pointer;
box-shadow: 0 0 30px lightblue;
}
#button-container {
text-align: center;
}
button {
font-family: 'Cabin';
background-color: #76a4b4;
color: #070d0b;
border: none;
padding: 1%;
margin: 1%;
border-radius: 7px;
}