-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontent.css
53 lines (46 loc) · 881 Bytes
/
content.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
div#prokite{
position: fixed;
bottom: 0;
right: 0;
}
div#prokite > ul{
list-style-type: none;
display: flex;
background: white;
padding: 0;
margin: 0;
border: 1px solid lightgrey;
}
div#prokite > ul > li{
margin: 0!important;
padding: 5px 10px;
cursor: pointer;
}
div#prokite li.active{
background: rgb(220, 0, 0, 0.1);
}
div#prokite > ul > li > img{
width: 30px;
}
div#prokite-popup{
display: none;
position: fixed;
bottom: 60px;
background: inherit;
width: 450px;
height: 300px;
z-index: 3;
right: 10px;
box-sizing: border-box;
border: 1px solid lightgrey;
}
div#prokite-popup header{
font-size: 16px;
font-weight: 700;
border-bottom: 1px solid lightgrey;
padding: 5px 10px;
}
div#prokite-popup div.content{
padding: 15px 10px;
overflow-y: scroll;
}