blob: 64c4053f6399adbd37f84ea5461c518fd3b1205b (
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
|
.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;
}
.tartiflette-link:hover {
background-color: #0056b3; /* Darker blue for hover effect */
}
}
|