forked from AKAspanion/ui-neumorphism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (75 loc) · 1.84 KB
/
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
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
:root {
--light-bg: #e4ebf5;
--light-bg-dark-shadow: #bec8e4;
--light-bg-light-shadow: #ffffff;
--dark-bg: #444444;
--dark-bg-dark-shadow: #363636;
--dark-bg-light-shadow: #525252;
--white: #ffffff;
--black: #000000;
--primary: #2979ff;
--primary-dark: #2962ff;
--primary-light: #82b1ff;
--error: #ff5252;
--info: #2196f3;
--success: #4caf50;
--warning: #dfa700;
--g-text-color-light: rgba(0, 0, 0, 0.93);
--g-text-color-disabled-light: rgba(0, 0, 0, 0.45);
--g-text-color-secondary-light: rgba(0, 0, 0, 0.7);
--g-text-color-dark: rgba(255, 255, 255, 0.93);
--g-text-color-disabled-dark: rgba(255, 255, 255, 0.45);
--g-text-color-secondary-dark: rgba(255, 255, 255, 0.7);
--g-bg-color-disabled-light: #dee5e8;
--g-bg-color-disabled-dark: #727272;
}
* {
margin: 0;
padding: 0;
box-sizing: inherit;
}
input,
label,
textarea,
button,
select,
a {
-webkit-tap-highlight-color: transparent !important;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
}
a {
text-decoration: none;
color: var(--primary);
}
a:hover {
text-decoration: underline;
}
body {
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: 'Roboto', source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.cursor-pointer {
cursor: pointer;
}
.selection-control-container {
display: inline-flex;
align-items: center;
justify-content: center;
margin: 4px 8px !important;
padding: 4px !important;
}
.d-dummy {
width: 100px;
height: 24px;
}