-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgel.css
47 lines (45 loc) · 932 Bytes
/
gel.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
[gel]:root{
--dark: #59526c;
--very-dark: #373343;
--night-gray: #0e0e0e;
--gray-300-c: #c0c0c0;
--gray-200-b: #d6d6d6;
}
[gel] button{
background-color: white;
border: 2px solid var(--gray-300-c);
color: var(--night-gray);
font-weight: 500;
margin-left: 1em;
cursor: pointer;
}
[gel] button:hover{
background-color: var(--gray-300-c);
}
[gel] button[primary]:hover{
background-color: var(--very-dark);
border-color: var(--very-dark);
}
[gel] button[primary]{
background-color: var(--dark);
border-color: var(--dark);
color: white;
}
[gel] button.icon img{
height: 1.5em;
}
[gel] button.icon{
border: 1px solid transparent;
margin-left: 0.5em;
}
[gel] button.icon:hover{
background: white;
border-color: var(--gray-300-c);
}
[gel] button[disabled]{
opacity: 0.4;
cursor: default;
}
[gel] nav button:first-child{
margin-left: 0;
}