-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathstyles.tsx
82 lines (73 loc) · 1.83 KB
/
styles.tsx
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
import csjs from 'csjs';
import insertCss from 'insert-css';
import colors from '../../theme/colors';
import dimensions from '../../theme/dimensions';
const Styles = {
// COMPONENTS
/** text with fancy highlight */
cText__glowing: `.cText__glowing {
color: ${colors.textColor};
text-shadow: ${colors.textColor} 0 0 10px;
white-space: nowrap;
}`,
// UTILITIES
/** centered text */
uCentered: `.uCentered {
text-align: center;
}`,
/** dark background with border */
uBordered: `.uBordered {
border-radius: 5px;
border: 1px solid ${colors.borderColor};
background-color: ${colors.backgroundColor};
}`,
/** hide element on certain screen width */
uHideOnTablet: `.uHideOnTablet {
margin: 0px 30px;
opacity: 1;
transition:
margin 1s 0.5s,
opacity 1s 0.5s;
}
@media (max-width: ${dimensions.tablet}) {
.uHideOnTablet {
margin: 0px 50px;
opacity: 0;
transition:
margin 1s,
opacity 1s,
box-shadow 0.5s linear;
}
}`,
/** show element on certain screen width */
uShowOnTablet: `.uShowOnTablet {
margin: 0px 50px;
opacity: 0;
transition:
margin 1s,
opacity 1s;
}
@media (max-width: ${dimensions.tablet}) {
.uShowOnTablet {
margin: 0px 30px;
opacity: 1;
transition:
margin 1s 0.5s,
opacity 1s 0.5s,
box-shadow 0.5s linear;
}
}`,
// SPECIAL EFFECTS
/** elevate element using box-shadow */
eElevate: `.eElevate {
box-shadow: none;
transition: box-shadow 0.6s ease-out;
}
.eElevate:hover {
box-shadow: 0 6px 20px 0 ${colors.shadowColor};
}`,
};
const css = Object.values(Styles).reduce((accumulator, cssClass) => accumulator + cssClass, '');
const styles: typeof Styles = csjs`${css}`;
insertCss(csjs.getCss(styles));
export default styles;