blob: 3b2d33df6c76ee4770b64d2b15b56a965fddf1e2 (
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
|
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;
`;
|