-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent_styles.css
103 lines (70 loc) · 1.43 KB
/
content_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
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
@font-face{
font-family: 'Roboto Mono';
src: url("https://fonts.googleapis.com/css?family=Roboto+Mono:500&display=swap");
}
.queue-button-hold{
font-family: "Arial";
font-weight: bold;
font-size: 12px;
z-index: 999;
width: 28px;
height: 28px;
border-radius: 2px;
color: white;
background-color: black;
margin: 4px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
/* top:0;
left:0; */
cursor: pointer;
opacity: .8;
}
.add-img{
width: 18px;
height: 18px;
z-index: 999;
opacity: 1;
filter: invert(90%);
transition: border .1s linear;
}
.queue-button-hold:hover{
border: .5px solid cornflowerblue;
opacity: .8;
}
.info-message{
border-radius: 2px;
display: flex;
align-items: center;
text-align: center;
position: fixed;
bottom: -45px;
right: 20px;
z-index: 999;
}
.info-message p{
font-size: 18px;
font-family: 'Roboto Mono';
padding: 10px 15px;
}
#failure{
background-color: #e74c3c;
opacity: .85;
border: 1px solid #ac3123;
color: rgb(139, 11, 15);
}
#success{
background-color: #2ecc71;
opacity: .85;
border: 1px solid #209752;
color: #01501b;
}
#end-message, #empty-message{
background-color: #2ecc71;
opacity: 1;
border: 1px solid #27ae60;
color: #f5f6fa;
background-color: #353b48;
}