-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.css
71 lines (63 loc) · 997 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
div[id="clear_div"]{
margin-right: 10px;
width: 30px;
height: 30px;
background: #4CAF50;
border-radius: 30px;
float: right;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
div[id="clear_div"]:hover
{ background-color: #dc962f;
}
img[id="Clear"]{
width: 14px;
height: 14px;
margin: 8px;
}
button {
background: #4CAF50;
color: white;
border: blue;
border-radius: 5px;
padding: 5px 5px;
float: right;
}
button:hover
{ background-color: #dc962f;
}
button:active
{
background-color: #4CAF50;
}
span[id^="list"] {
cursor: pointer;
font-size: medium;
padding: 5px 5px;
color: white;
}
div[id="mylist"]
{ padding: 10px;
background-color:#03A9F4;
}
div[id="code"]
{
background:#37474F;
color: white;
}
div {
padding: 5px 5px;
}
pre[id^="hide"] {
display: none;
padding: 5px 5px;
}
h1,p{
text-align: center;
padding: 5px 5px;
}
html, body{
margin: 0;
background: #0288D1;
color: white;
}