This repository was archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathbase.styles.js
123 lines (111 loc) · 3.14 KB
/
base.styles.js
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
import styled, { css } from 'react-emotion';
export const purplePrimary = '#7657fb';
export const purpleSecondary = '#6f19ed';
export const whiteFull = '#ffffff';
export const blackPure = '#000000';
export const graySecondary = '#ddd';
export const breakpoints = {
xs: '@media screen and (max-width: 40em)',
sm: '@media screen and (min-width: 40em) and (max-width: 52em)',
md: '@media screen and (min-width: 52em) and (max-width: 64em)',
lg: '@media screen and (min-width: 64em)',
};
export const hidden = key => props =>
props[key]
? {
[breakpoints[key]]: {
display: 'none',
},
}
: null;
export const xs = hidden('xs');
export const sm = hidden('sm');
export const md = hidden('md');
export const lg = hidden('lg');
const Hide = styled.div([], xs, sm, md, lg);
export const baseContainer = css`
max-width: 1024px;
margin: 0 auto;
`;
export const Container = styled.div`
${baseContainer};
`;
export const baseButton = css`
background: #7657fb;
padding: 0.2rem 1rem;
color: #fff;
text-decoration: none;
transition: all 0.25s;
&:hover {
background: #6f19ed;
font-weight: normal;
}
`;
export const Button = styled.a`
${baseButton};
width: ${props => (props.fluid ? '100%' : 'auto')};
background: ${props => (props.inverted ? '#7657fb' : props.ghost ? '#fff' : '#fff')};
color: ${props => (props.inverted ? '#fff' : props.ghost ? purpleSecondary : '#222')};
padding: ${props =>
props.large ? '0.8rem 2.25rem' : props.medium ? '0.6rem 1.2rem' : props.small ? '0.3rem 1.1rem' : '0.2rem 1rem'};
${breakpoints.lg} {
font-size: 1.8rem;
}
${breakpoints.md} {
font-size: 1rem;
}
${breakpoints.sm} {
font-size: 0.8rem;
}
font-weight: ${props => (props.ghost ? 600 : 500)};
border: ${props => (props.ghost ? `2px solid ${purpleSecondary}` : 'none')};
cursor: pointer;
user-select: none;
-webkit-touch-callout: none;
&:hover {
font-weight: ${props => (props.ghost ? 600 : 500)};
background: ${props => (props.inverted ? purpleSecondary : props.ghost ? purpleSecondary : '#eee')};
color: ${props => (props.inverted ? '#fff' : props.ghost ? whiteFull : '#222')};
}
`;
export const Title = styled.h2`
font-size: 2rem;
font-weight: 400;
color: ${props => (props.inverted ? (props.color ? props.color : '#7657fb') : '#fff')};
${breakpoints.md} {
font-size: 1.8rem;
}
${breakpoints.sm} {
font-size: 1.8rem;
line-height: 1.8rem;
text-align: center;
}
${breakpoints.xs} {
font-size: 1.8rem;
line-height: 2rem;
text-align: center;
}
`;
export const SubTitle = styled.h3`
font-size: ${props => (props.small ? '1rem' : '1.2rem')};
font-weight: 400;
color: ${props => (props.inverted ? '#222' : '#fff')};
max-width: 900px;
margin-left: auto;
margin-right: auto;
line-height: ${props => (props.small ? '1.4rem' : '2rem')};
${breakpoints.md} {
font-size: 1rem;
}
${breakpoints.sm} {
font-size: 1rem;
text-align: center;
}
${breakpoints.xs} {
font-size: 0.9rem;
text-align: center;
font-weight: 600;
line-height: ${props => (props.small ? '1.4rem' : '1.8rem')};
}
`;
export default Hide;