-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
104 lines (86 loc) · 1.69 KB
/
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
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
102
103
104
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
.box {
width: 300px;
border-radius: 5px;
padding: 10px;
background: #fff;
}
.box ul {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.box ul li {
width: 50%;
text-align: center;
justify-content: center;
align-items: center;
}
.box ul li:last-child {
flex: 1;
margin-left: -3px;
margin-right: -3px;
}
.box ul li a {
border: 1px solid #eee;
display: block;
border-radius: 5px;
padding: 15px 10px;
margin: 1.5%;
background: #fff;
transition: .15s ease-in-out;
}
#Green {
background: #4caf50 !important;
border-color: #4caf50;
}
#Blue {
background: #2196f3;
border-color: #2196f3;
}
#Pink {
background: #e91e63;
border-color: #e91e63;
}
.box ul li a:hover {
opacity: 0.75;
}
.box ul li a span {
color: #fff;
font-family: Arial;
font-size: 12px;
display: block;
font-weight: bold;
margin-top: 5px;
}
#Green2 {
background: linear-gradient(45deg, rgba(76, 175, 80, 1) 0%, rgba(42, 244, 50, 1) 100%);
}
#Blue2 {
background: linear-gradient(45deg, rgba(33, 150, 243, 1) 0%, rgba(3, 85, 150, 1) 100%);
}
#Pink2 {
background: linear-gradient(45deg, rgba(233, 30, 99, 1) 0%, rgba(175, 0, 59, 1) 100%);
}
span.title {
color: #555;
font-family: Arial;
font-size: 12px;
display: block;
font-weight: bold;
padding: 15px 5px 5px;
}
/*----------*/
.box {
display: none;
position: absolute;
top: 42px;
z-index: 1;
right: 4px;
}