-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
90 lines (75 loc) · 1.34 KB
/
index.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
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@700&display=swap");
html,
body {
margin: 0;
}
* {
font-family: "Oxygen", sans-serif;
font-weight: bold;
}
.card {
padding: 20px 0;
text-align: center;
border-radius: 6px;
border: solid 1px #141c3a;
background-color: #141c3a;
color: white;
cursor: pointer;
height: 75px;
font-size: 16px;
}
.card:hover,
.card:focus {
background-color: #2e4085;
}
.cards-container {
display: grid;
grid-template-columns: repeat(3, 138px);
grid-auto-rows: 1fr;
gap: 16px 16px;
margin: 0 auto;
width: fit-content;
padding: 24px 0 33px 0;
}
.card.selected {
background-color: initial;
color: #141c3a;
border: solid 1px #141c3a;
}
.card.matched {
color: #4fe0b0;
}
.card.no-match {
color: #fd4d3f;
}
.logo-placeholder {
width: 120px;
}
.score-container {
background-color: #f2f2f2;
padding: 18px 158px 23px 159px;
text-align: center;
font-size: 32px;
}
.footer > button {
width: 50%;
padding: 19px 40px 19px 40px;
font-size: 20px;
border: none;
color: #ffffff;
cursor: pointer;
}
.start-button {
background-color: #141c3a;
}
.start-button:hover,
.start-button:focus {
background-color: #2c3f81;
}
.try-new-pair-button {
background-color: #6400e4;
}
.try-new-pair-button:hover,
.try-new-pair-button:focus {
background-color: #7d1aff;
}