forked from slipHQ/truthy.so
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
29 lines (25 loc) · 994 Bytes
/
styles.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
/* Custom page background */
body {
min-width: 100%;
min-height: 100vh;
background:
/* For small screens put each gradient at 500px width, this makes them merge nicely when narrow */
radial-gradient(ellipse 500px 80% at bottom 15% left -50px, #6A3428, transparent),
radial-gradient(ellipse 500px 80% at top 15% right -50px, #6A285C, black);
}
/* For larger screens put each gradient at 40% width, this keeps them prominent */
@media (min-width: 1024px) {
body {
background:
radial-gradient(ellipse 40% 80% at bottom 15% left -50px, #6A3428, transparent),
radial-gradient(ellipse 40% 80% at top 15% right -50px, #6A285C, black);
}
}
/* Clean Monaco cursor: see https://stackoverflow.com/a/68930913/1375972 */
.monaco-editor textarea:focus {
box-shadow: none !important;
}
/* Custom button background */
.gradient-cta {
background: linear-gradient(263.56deg, #F0C06F -0.6%, #DA4142 49.43%, #8447A4 100%);
}