blob: abe5537fb3a61d299ec02bba68ff84fe59061c32 (
plain)
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
|
.tartiflette-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
.tartiflette-box {
border-radius: 1rem;
padding: 1rem;
width: 8rem;
text-align: center;
background-color: white;
}
.tartiflette-box:hover {
background-color: whitesmoke;
}
.tartiflette-link {
display: inline-block;
margin-top: 0.5rem;
padding: 0.5rem 1rem;
text-decoration: none;
color: white;
border-radius: 1rem;
}
.scored {
background-color: forestgreen;
}
.unscored {
background-color: firebrick;
}
.unscored.tartiflette-link:hover {
background-color: tomato;
}
.scored.tartiflette-link:hover {
background-color: limegreen;
}
}
|