-
Notifications
You must be signed in to change notification settings - Fork 0
/
Board.module.css
58 lines (51 loc) · 1.16 KB
/
Board.module.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
.copy {
display: flex;
align-items: center;
gap: 16px;
}
.copy button {
font-family: var(--mono-font);
border: 2px solid var(--background-darker);
border-radius: 12px;
font-weight: 800;
font-size: 18px;
padding: 10px;
display: flex;
color: var(--special-color);
background-color: initial;
transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.inCode {
opacity: 0;
position: absolute;
display: flex;
z-index: 4;
background: rgb(39 44 53 / 90%);
border-radius: 12px;
right: 6px;
margin-top: 0px;
border: 3px solid var(--background-dark);
transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-theme='light'] .inCode {
background: rgb(270 270 270 / 90%);
}
.inCode button:nth-of-type(1) {
padding: 6px 10px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-right: 2px solid var(--background-darker);
}
.inCode button:nth-of-type(2) {
padding: 6px 10px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
.inCode button {
color: var(--special-color);
border-radius: 9px;
font-family: var(--mono-font);
}
.inCode button:hover {
background: rgba(255, 255, 255, 0.1);
}