forked from open-sauced/open-sauced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
128 lines (113 loc) · 2.17 KB
/
index.css
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
/* stylelint-disable */
:root {
font-size: 62.5%;
/* colors */
--cheesyYellow: #f6d809;
--offWhite: #faeace;
--lightestGrey: #e6e6e6;
--lighterGrey: #bcbcbc;
--lightGrey: #8b8b8b;
--grey: #313d3e;
--backgroundGrey:#2F372E;
--darkestGrey:#0F0F0F;
--gold: #f6bc00;
--orange: #fe9d68;
--blue: #4d9abf;
--green: #00c7b7;
--darkGreen: #03b1a3;
--red: #fa3946;
--darkRed: #fa3946;
--saucyRed: #fa3946;
/* typography */
--thin: 100;
--light: 300;
--regular: 400;
--semibold: 500;
--bold: 700;
--black: 900;
/* padding */
--micro: 8px;
--tiny: 16px;
--small: 24px;
--medium: 40px;
--large: 64px;
--xl: 104px;
--xxl: 168px;
/* border radius */
--smallBorderRadius: 4px;
--borderRadius: 10px;
/* responsive breakpoints */
--mobile: 480px;
--tablet: 768px;
--blogNavBreak: 930px;
--desktop: 960px;
--display: 1200px;
}
#root {
overflow-x: hidden;
max-width: 100%;
}
a {
cursor: pointer;
}
body {
background: var(--offWhite);
color: var(--grey);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin: 0 auto;
}
h1 {
margin: var(--micro) 0;
}
p {
margin: 0 0 var(--small) 0;
}
.greyed {
color: var(--lightGrey);
}
#sort{
width: 80px;
}
.form-control {
padding: 10px;
}
section {
padding: var(--tiny);
margin: 0 auto;
}
footer {
margin: auto;
padding: 32px 50px;
width: 300px;
}
body.dark {
background: var(--darkestGrey);
color: var(--lightestGrey);
}
body.dark img.svg {
filter: invert();
}
body.dark svg.svg {
fill: var(--lightestGrey);
}
body.dark select {
color: var(--lightestGrey);
}
/*important is to manage the emoji sizing, so more appear while searching.*/
.remirror-editor {
min-height: 250px !important;
}
.remirror-floating-popover {
background: white;
outline: 0.25pt solid var(--lightestGrey);
}
.remirror-emoji-popup-highlight {
background: var(--lighterGrey);
}
body.dark .remirror-floating-popover {
background: var(--backgroundGrey);
outline: 0.25pt solid var(--lighterGrey);
}
body.dark .remirror-emoji-popup-highlight {
background: var(--lightGrey);
}