forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
129 lines (112 loc) · 2.66 KB
/
Copy pathindex.css
File metadata and controls
129 lines (112 loc) · 2.66 KB
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
129
/* variables
============================================================================ */
:root {
/*
These REFERENCE are various colors that were sprinkled throughout
They are kept around for reference until colors settle
*/
--REFERENCE-link-color: #00b7ff;
--REFERENCE-button-border-color: #40a9ff;
--REFERENCE-button-active-color: #096dd9;
--REFERENCE-primary-color: #1890ff;
--primary-color: #1890ff;
--primary-dark-color: #0070d8;
--primary-light-color: #42a4ff;
--primary-color-90: rgba(24, 144, 255, 0.9);
--primary-color-30: rgba(24, 144, 255, 0.3);
--secondary-color: rgb(250, 50, 173);
--secondary-dark-color: hsl(323, 100%, 50%);
--secondary-color-90: rgba(250, 50, 173, 0.9);
--secondary-color-75: rgba(250, 50, 173, 0.75);
--secondary-color-30: rgba(250, 50, 173, 0.3);
--border: 1px solid rgba(0, 0, 0, 0.15);
--box-shadow-1: rgba(64, 169, 255, 0.7) 1px 1px 1px 1px,
rgb(255, 154, 251, 0.3) 2px 2px 4px 2px;
--box-shadow-2: rgba(56, 165, 255, 0.44) 2px 2px 4px 1px;
}
/* core styles
============================================================================ */
a {
color: var(--primary-color);
}
a:hover,
a:active,
a:focus {
text-decoration: none;
}
button,
select {
text-transform: none;
}
button,
input {
overflow: visible;
}
/* reach ui
============================================================================ */
[data-reach-tooltip] {
z-index: 9000 !important;
}
[data-reach-dialog-overlay] {
z-index: 9000 !important;
}
[data-reach-dialog-content] {
z-index: 9000 !important;
}
[data-reach-dialog-overlay] {
background: rgba(0, 169, 253, 0.45);
background: radial-gradient(
at 50% 300px,
rgba(248, 70, 252, 0.4) 0%,
rgba(0, 169, 253, 0.45) 100%
);
}
[data-reach-menu-item][data-selected] {
background: var(--primary-color);
color: white;
outline: none;
}
/* Utilities
============================================================================ */
.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.h-100 {
height: 100%;
}
.w-100 {
width: 100%;
}
.bg-error {
background-color: var(--secondary-color-75);
color: #fff;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.spinning {
-webkit-animation: spin 2s linear infinite;
-moz-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-moz-keyframes spin {
100% {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}