-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwa_button.scss
71 lines (64 loc) · 1.06 KB
/
wa_button.scss
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
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,.19);
z-index: 10000000000000000000000;
background: #CCC;
border-radius: 3px;
display: flex;
flex-direction: column;
transition-duration:1s;
max-width:90vw;
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;
}
span.wa_title {
font-size: 1rem;
padding: 10px 0;
font-weight:bold;
}
form#wa_form {
span {
display: flex;
}
label {
font-weight:normal;
}
input#wa_message {
height: 40px;
border: none;
border-radius: 20px;
margin-right: 5px;
width: 240px;
padding: 0 25px;
}
button {
background: transparent;
border: none;
}
}
}
body.wa_show_popup div#wa_button_popup {
opacity: 1;
left: 20px;
}