-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
130 lines (112 loc) · 2.03 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@font-face {
font-family: "SEBANG_Gothic_Bold";
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/SEBANG_Gothic_Bold.woff")
format("woff");
font-weight: normal;
font-style: normal;
}
body {
min-width: 350px;
max-width: 100%;
min-height: 200px;
max-height: 100%;
position: relative;
vertical-align: middle;
}
.body-header {
padding: 5px;
font-family: SEBANG_Gothic_Bold;
border-bottom: 2px solid #6799ff;
border-top: 2px solid #6799ff;
text-align: center;
}
.body-container {
display: flex;
justify-content: space-between;
padding: 20px 20px;
align-items: center;
}
.body-footer {
padding: 10px;
font-family: SEBANG_Gothic_Bold;
border-bottom: 2px solid #6799ff;
border-top: 2px solid #6799ff;
text-align: center;
}
.item {
opacity: 1;
transition: opacity 0.2s ease-in-out;
}
.item:hover {
opacity: 0.5;
}
.img-item:hover {
opacity: 0.5;
width: 48px;
}
.img-item2:hover {
opacity: 0.5;
width: 64px;
}
.img-item3:hover {
opacity: 0.5;
width: 58px;
}
.img-h {
vertical-align: middle;
margin: 10px;
margin-right: 40px;
}
.text-h {
font-size: 13px;
vertical-align: middle;
}
.span-h {
display: none;
font-size: 13px;
vertical-align: middle;
padding-top: 20px;
}
hr {
border: dashed 0.5px #6799ff;
width: 95%;
}
button {
background: #6799ff;
color: #fff;
border: none;
position: relative;
height: 30px;
width: 63px;
font-size: 1.1em;
cursor: pointer;
transition: 800ms ease all;
outline: none;
margin: 0px 3px;
}
button:hover {
background: #fff;
color: #6799ff;
}
button:before,
button:after {
content: "";
position: absolute;
top: 0;
right: 0;
height: 2px;
width: 0;
background: #6799ff;
transition: 400ms ease all;
}
button:after {
right: inherit;
top: inherit;
left: 0;
bottom: 0;
}
button:hover:before,
button:hover:after {
width: 100%;
transition: 800ms ease all;
}