blob: aafab91ef780180f0b521dc56c175037210241e6 (
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
|
import styled from "styled-components";
export const Container = styled.div`
position: fixed;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.85);
`;
export const PopUp = styled.div`
width: 90%;
max-width: 480px;
padding: 32px;
background-color: var(--cl-gray-1);
border: 1px solid ${({ theme }) => theme.border};
display: flex;
flex-direction: column;
align-items: center;
h1 {
font-family: "Roboto Mono", monospace;
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--cl-green-6);
margin: 0;
}
`;
export const Spacer = styled.div`
width: 100%;
height: 1px;
margin: 20px 0;
background-color: ${({ theme }) => theme.border};
`;
export const Section = styled.div`
width: 100%;
margin: 4px 0;
p {
font-size: 0.82rem;
line-height: 1.6;
color: var(--cl-gray-9);
margin: 0 0 8px 0;
}
a { color: var(--cl-orange-6); }
`;
export const Contact = styled.p`
margin-top: 5%;
font-size: 0.75rem;
opacity: 0.5;
a { color: ${({ theme }) => theme.text}; }
`;
|