-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyles.scss
64 lines (53 loc) · 1.72 KB
/
styles.scss
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
/*
Go to https://uploadcare.com/docs/file-uploader/styling/
to read more about File Uploader styling
*/
@import '@uploadcare/file-uploader/web/uc-file-uploader-regular.min.css';
@import '@uploadcare/file-uploader/web/uc-file-uploader-minimal.min.css';
body {
margin: 0;
padding: 0 24px 24px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
background: var(--background-color);
color: var(--text-color);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* setting vars on body too, to prevent unstyled state when theme is not picked yet */
body, body.theme--light {
color-scheme: light;
--background-color: #F7F9FA;
--text-color: #000;
--ui-text-color: #9393a6;
--ui-control-border-color-default: #CBCDD7;
--ui-control-border-color-focus: #0059C8;
--ui-control-background-color: #fcfcfe;
--ui-control-box-shadow-color: rgba(199, 215, 255, .5);
--ui-control-outline-color-focus: #98cbff;
--ui-control-text-color: #323236;
--ui-action-button-background: #0059C8;
--ui-action-button-text-color: #fff;
}
body.theme--dark {
/* restyle browser controls */
color-scheme: dark;
--background-color: #080605;
--text-color: #fff;
--ui-text-color: #6c6c59;
--ui-control-border-color-default: #343228;
--ui-control-border-color-focus: #ffa637;
--ui-control-background-color: #030301;
--ui-control-box-shadow-color: rgba(56, 40, 0, .5);
--ui-control-outline-color-focus: #673400;
--ui-control-text-color: #cdcdc9;
--ui-action-button-background: #ffa637;
--ui-action-button-text-color: #000;
}
a {
text-decoration: none;
}
img, svg {
display: block;
}