forked from get-convex/convex-tour-chat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.css
47 lines (42 loc) · 753 Bytes
/
popup.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
body{
background-color: rgb(0, 0, 0);
font-size: 25px;
width: 400px;
color: white;
height: 240px;
}
#timer{
background: #fff;
color: #000;
width: 150px;
margin: 50px auto;
margin-left: center;
margin-top: 20px;
text-align: center;
}
#settings {
background-color: transparent;
max-width: 25px;
max-height: 25px;
position: fixed;
top: 10px;
right: 30px;
}
.hover-text {
display: none;
}
#settings:hover {
filter:brightness(75%);
}
#settings:hover .hover-text {
display: block;
font-size: 15px;
color: black;
}
.hover-text {
position:absolute;
background-color:white;
border:1px solid rgb(255, 254, 254);
display:none;
right: 25px;
}