aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/typing/page.styles.ts
blob: 521fe7a3b34d866d499c9354cc7fb4038532ece2 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import styled, { createGlobalStyle } from "styled-components";
import {
  Root as BaseRoot,
  Navbar as BaseNavbar,
  Logo as BaseLogo,
  LogoIcon as BaseLogoIcon,
  NavLink as BaseNavLink,
  NavCtaLink as BaseNavCtaLink,
} from "../styles/shared";
import {
  NavLeft,
  NavCenter,
  SearchBox as BaseSearchBox,
  SearchInput as BaseSearchInput,
  SearchButton as BaseSearchButton,
  NavRight,
  Avatar as BaseAvatar,
  ChipsBar as BaseChipsBar,
  Chip as BaseChip,
  GridContainer,
  CardGrid,
  Card as BaseCard,
  ThumbnailWrapper as BaseThumbnailWrapper,
  Thumbnail,
  PlayOverlay,
  PlayCircle,
  CardMeta,
  CardInfo,
  CardTitle as BaseCardTitle,
  CardSub as BaseCardSub,
  EmptyState as BaseEmptyState,
  CtaSection as BaseCtaSection,
  SectionHeading as BaseSectionHeading,
  OpenPlayerLink as BaseOpenPlayerLink,
  PlayerDescription as BasePlayerDescription,
} from "../page.styles";

export { NavLeft, NavCenter, NavRight, GridContainer, CardGrid, Thumbnail, PlayOverlay, PlayCircle, CardMeta, CardInfo };

export const TypingGlobalStyle = createGlobalStyle`
  html,
  body {
    background-color: #0b0b10;
  }
`;

export const Root = styled(BaseRoot)`
  background-color: #0b0b10;
  color: #f5f5f5;
`;

export const Navbar = styled(BaseNavbar)`
  background-color: rgba(11, 11, 16, 0.9);
  border-bottom: 1px solid #1f1f2a;
`;

export const Logo = styled(BaseLogo)`
  color: #f5f5f5;
`;

export const LogoIcon = styled(BaseLogoIcon)`
  background-color: #f5f5f5;
  color: #0b0b10;
`;

export const NavLink = styled(BaseNavLink)`
  color: #b0b3bd;
  &:hover {
    background-color: #1a1d29;
    color: #fff;
  }
`;

export const NavCtaLink = styled(BaseNavCtaLink)`
  background-color: #1a1d29;
  border-color: #2a2f3d;
  color: #fff;
  &:hover {
    background-color: #222838;
    border-color: #3a4154;
  }
`;

export const SearchBox = styled(BaseSearchBox)`
  border-color: #2a2f3d;
  background-color: #141824;
  &:focus-within {
    border-color: #4b5563;
  }
`;

export const SearchInput = styled(BaseSearchInput)`
  color: #f5f5f5;
  &::placeholder {
    color: #8b90a0;
  }
`;

export const SearchButton = styled(BaseSearchButton)`
  background-color: #1a1d29;
  border-left-color: #2a2f3d;
  color: #c0c4d0;
  &:hover {
    background-color: #222838;
    color: #fff;
  }
`;

export const Avatar = styled(BaseAvatar)`
  color: #9aa0ad;
  &:hover {
    color: #fff;
  }
`;

export const ChipsBar = styled(BaseChipsBar)`
  background-color: #0f111a;
`;

export const Chip = styled(BaseChip)`
  border-color: #2a2f3d;
  color: #b8bcc7;
  background-color: transparent;
  &:hover {
    background-color: #1a1d29;
    color: #fff;
  }
`;

export const Card = styled(BaseCard)`
  border: 1px solid #1f1f2a;
  background-color: #0f111a;
  &:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    border-color: #2a2f3d;
  }
`;

export const ThumbnailWrapper = styled(BaseThumbnailWrapper)`
  background-color: #1a1d29;
  color: #4b5563;
`;

export const CardTitle = styled(BaseCardTitle)`
  color: #f5f5f5;
`;

export const CardSub = styled(BaseCardSub)`
  color: #9aa0ad;
`;

export const EmptyState = styled(BaseEmptyState)`
  color: #9aa0ad;
`;

export const CtaSection = styled(BaseCtaSection)`
  border-top-color: #1f1f2a;
`;

export const SectionHeading = styled(BaseSectionHeading)`
  color: #f5f5f5;
`;

export const OpenPlayerLink = styled(BaseOpenPlayerLink)`
  background-color: #f5f5f5;
  color: #0b0b10;
  &:hover {
    background-color: #e5e7eb;
  }
`;

export const PlayerDescription = styled(BasePlayerDescription)`
  color: #9aa0ad;
`;
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage