-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwa_button.css
55 lines (53 loc) · 1.26 KB
/
wa_button.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
a#wa_button {
position: fixed;
bottom: 15px;
left: 15px;
box-shadow: 2px 2px 11px #CCC;
border-radius: 50%; }
div#wa_button_popup {
position: fixed;
left: -100%;
opacity: 0;
bottom: 60px;
padding: 22px 24px 20px;
box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19);
z-index: 10000000000000000000000;
background: #CCC;
border-radius: 3px;
display: flex;
flex-direction: column;
transition-duration: 1s;
max-width: 90vw; }
div#wa_button_popup a.wa_close {
position: absolute;
right: 8px;
top: 5px;
line-height: 20px;
font-size: 30px;
color: #666;
width: 25px;
height: 25px;
display: flex;
justify-content: center;
align-items: center; }
div#wa_button_popup span.wa_title {
font-size: 1rem;
padding: 10px 0;
font-weight: bold; }
div#wa_button_popup form#wa_form span {
display: flex; }
div#wa_button_popup form#wa_form label {
font-weight: normal; }
div#wa_button_popup form#wa_form input#wa_message {
height: 40px;
border: none;
border-radius: 20px;
margin-right: 5px;
width: 240px;
padding: 0 25px; }
div#wa_button_popup form#wa_form button {
background: transparent;
border: none; }
body.wa_show_popup div#wa_button_popup {
opacity: 1;
left: 20px; }