-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (55 loc) · 880 Bytes
/
styles.css
File metadata and controls
55 lines (55 loc) · 880 Bytes
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
body {
margin: 0;
padding: 0;
background: #23272a;
}
.container {
width: 330px;
padding: 18px;
background: #23272a;
color: #fff;
border-radius: 10px;
font-family: Arial, sans-serif;
}
h2 {
text-align: center;
margin-bottom: 18px;
}
.account-row {
display: flex;
align-items: center;
margin-bottom: 12px;
background: #2c2f33;
border-radius: 6px;
padding: 7px;
}
.account-name {
flex: 1;
font-weight: bold;
color: #fff;
}
.token {
background: #23272a;
border-radius: 4px;
padding: 2px 7px;
margin-right: 7px;
cursor: pointer;
transition: background 0.15s;
user-select: all;
color: #7289da;
font-size: 13px;
}
.token:hover {
background: #7289da;
color: #fff;
}
.note {
margin-top: 18px;
font-size: 13px;
text-align: center;
color: #b9bbbe;
}
.copied {
background: #43b581 !important;
color: #fff !important;
}