-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
59 lines (50 loc) · 983 Bytes
/
styles.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
.color-picker {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 10px;
}
.color {
width: 30px;
height: 30px;
margin: 5px;
border-radius: 50%;
cursor: pointer;
}
.hidden {
display: none;
}
.code-block {
background-color: #000;
color: #fff;
padding: 5px;
border-radius: 5px;
}
.discord-embed {
display: flex;
border-radius: 5px;
background-color: #36393f;
overflow: hidden;
margin-bottom: 10px;
width: 300px;
}
.discord-embed-left-strip {
flex-shrink: 0;
width: 5px;
background-color: #7289da;
}
.discord-embed-right-content {
padding: 10px;
color: #ffffff;
}
.discord-embed-title {
color: #fff;
font-size: 18px;
font-weight: bold;
margin-bottom: 5px;
}
.discord-embed-description {
color: #ddd;
font-size: 16px;
}