blob: 9b502f7b07cff5afb68726d0aa04428a593df891 (
plain) (
blame)
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
|
import styled from "styled-components";
export const ResultTitle = styled.h1`
font-family: "Roboto Mono", monospace;
font-size: 1.3rem;
font-weight: 700;
letter-spacing: 0.05em;
color: var(--cl-green-6);
margin-bottom: 8px;
@media (max-width: 768px) {
font-size: 1rem;
}
`;
export const Tries = styled.h4`
font-family: "Roboto Mono", monospace;
font-size: 0.85rem;
font-weight: 400;
color: var(--cl-gray-8);
margin: 0 0 16px 0;
`;
export const SongTitle = styled.h3`
font-family: "Roboto Mono", monospace;
font-size: 0.9rem;
font-weight: 600;
color: var(--cl-white);
margin: 0 0 4px 0;
`;
export const TimeToNext = styled.h4`
font-family: "Roboto Mono", monospace;
font-size: 0.8rem;
font-weight: 400;
color: var(--cl-gray-6);
margin-top: 16px;
`;
export const GroupStatus = styled.div`
margin-top: 14px;
padding: 10px 12px;
border: 1px solid var(--cl-gray-4);
border-radius: 6px;
width: 100%;
max-width: 560px;
`;
export const GroupHeading = styled.h4`
font-family: "Roboto Mono", monospace;
font-size: 0.85rem;
font-weight: 700;
color: var(--cl-white);
margin: 0 0 6px 0;
`;
export const GroupMeta = styled.p`
font-family: "Roboto Mono", monospace;
font-size: 0.8rem;
font-weight: 400;
color: var(--cl-gray-7);
margin: 0;
strong {
color: var(--cl-green-6);
}
& + & {
margin-top: 6px;
}
`;
|