-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphene.css
135 lines (113 loc) · 3.04 KB
/
graphene.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
129
130
131
132
133
134
135
@font-face {
font-family: 'IBM Plex Sans';
font-weight: 700;
src: url( './fonts/Plex/Sans/IBMPlexSans-Bold.woff2' ) format( 'woff2' );
}
@font-face {
font-family: 'IBM Plex Sans';
font-weight: 600;
src: url( './fonts/Plex/Sans/IBMPlexSans-SemiBold.woff2' ) format( 'woff2' );
}
@font-face {
font-family: 'IBM Plex Sans';
font-weight: 500;
src: url( './fonts/Plex/Sans/IBMPlexSans-Medium.woff2' ) format( 'woff2' );
}
@font-face {
font-family: 'IBM Plex Sans';
font-weight: 400;
src: url( './fonts/Plex/Sans/IBMPlexSans-Regular.woff2' ) format( 'woff2' );
}
@font-face {
font-family: 'IBM Plex Mono';
font-weight: 400;
src: url( './fonts/Plex/Mono/IBMPlexMono-Regular.woff2' ) format( 'woff2' );
}
@font-face {
font-family: 'Material Symbols Outlined';
font-style: normal;
src: url( './fonts/Symbols/material-symbols-outlined.woff2' ) format( 'woff2' );
}
gr-avatar gr-icon::part( font ) {
cursor: pointer;
font-variation-settings:
"FILL" 1,
"wght" 200;
pointer-events: none;
}
gr-avatar[src] gr-icon {
display: none;
}
gr-avatar[read-only] gr-icon::part( font ) {
color: #a8a8a8;
}
gr-avatar[disabled] gr-icon::part( font ) {
color: #c6c6c6;
}
gr-button gr-icon::part( font ) {
color: #ffffff;
cursor: pointer;
font-variation-settings: 'wght' 200;
}
gr-button[disabled] gr-icon::part( font ) {
color: #8d8d8d;
cursor: not-allowed;
}
gr-button[kind=ghost] gr-icon::part( font ) {
color: #0f62fe;
padding: 0 0 0 15px;
}
gr-drawer-item gr-icon {
padding: 0 0 0 16px;
}
gr-drawer-item gr-icon::part( font ) {
color: #f4f4f4;
font-size: 20px;
}
gr-form-field gr-link::part( label ),
gr-form-field gr-label::part( label ),
gr-form-field gr-relative-time::part( label ) {
font-size: 12px;
}
gr-form-field gr-label::part( label ),
gr-form-field gr-relative-time::part( label ) {
color: #6f6f6f;
}
gr-header gr-label::part( label ) {
color: #ffffff;
}
gr-header gr-label[slot=brand]::part( label ) {
font-weight: 700;
margin: 0 6px 0 0;
}
gr-list gr-label::part( label ) {
color: #525252;
}
gr-tag gr-icon {
max-width: 18px;
margin: 0 0 0 -2px;
}
gr-tag gr-icon::part( font ) {
color: #161616;
font-size: 18px;
font-variation-settings: "wght" 200;
height: 18px;
line-height: 18px;
max-height: 18px;
max-width: 18px;
min-height: 18px;
min-width: 18px;
margin: 0 2px 0 0;
width: 18px;
}
gr-tag[type=red] gr-icon::part( font ) { color: #750e13; }
gr-tag[type=magenta] gr-icon::part( font ) { color: #740937; }
gr-tag[type=purple] gr-icon::part( font ) { color: #491d8b; }
gr-tag[type=blue] gr-icon::part( font ) { color: #002d9c; }
gr-tag[type=cyan] gr-icon::part( font ) { color: #003a6d; }
gr-tag[type=teal] gr-icon::part( font ) { color: #004144; }
gr-tag[type=green] gr-icon::part( font ) { color: #044317; }
gr-tag[type=cool-gray] gr-icon::part( font ) { color: #343a3f; }
gr-tag[type=warm-gray] gr-icon::part( font ) { color: #3c3838; }
gr-tag[type=high-contrast] gr-icon::part( font ) { color: #ffffff; }
gr-tag[disabled] gr-icon::part( font ) { color: #c6c6c6; }