| 1 |
/* sw_log_notify */ |
| 2 |
|
| 3 |
.wdk_log_notify-box { |
| 4 |
position: fixed; |
| 5 |
z-index: 9999999; |
| 6 |
bottom: 10px; |
| 7 |
right: 10px; |
| 8 |
} |
| 9 |
|
| 10 |
.wdk_log_notify { |
| 11 |
position: relative; |
| 12 |
background: #fffffff7; |
| 13 |
padding: 12px 15px; |
| 14 |
border-radius: 15px; |
| 15 |
width: 250px; |
| 16 |
box-shadow: 0px 1px 0px 0.25px rgba(0, 0, 0, 0.07); |
| 17 |
-webkit-box-shadow: 0px 0 3px 2px rgba(0, 0, 0, 0.08); |
| 18 |
margin: 0; |
| 19 |
margin-bottom: 10px; |
| 20 |
font-size: 16px; |
| 21 |
background: #5cb811; |
| 22 |
background: rgba(92, 184, 17, 0.9); |
| 23 |
padding: 15px; |
| 24 |
border-radius: 4px; |
| 25 |
color: #fff; |
| 26 |
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5); |
| 27 |
-webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275); |
| 28 |
transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275); |
| 29 |
border: 0 !important; |
| 30 |
} |
| 31 |
|
| 32 |
.wdk_log_notify.error { |
| 33 |
margin: 0; |
| 34 |
margin-bottom: 10px; |
| 35 |
background: #cf2a0e; |
| 36 |
padding: 12px 15px; |
| 37 |
} |
| 38 |
|
| 39 |
.wdk_log_notify.loading { |
| 40 |
background: #5bc0de; |
| 41 |
} |
| 42 |
|
| 43 |
.wdk_log_notify { |
| 44 |
display: block; |
| 45 |
margin-top: 10px; |
| 46 |
position: relative; |
| 47 |
opacity: 0; |
| 48 |
-webkit-transform: translateX(120%); |
| 49 |
transform: translateX(120%); |
| 50 |
} |
| 51 |
|
| 52 |
.wdk_log_notify.show { |
| 53 |
-webkit-transform: translateX(0); |
| 54 |
transform: translateX(0); |
| 55 |
opacity: 1; |
| 56 |
} |
| 57 |
|
| 58 |
@media (max-width: 767px) { |
| 59 |
.wdk_log_notify-box { |
| 60 |
bottom: 120px; |
| 61 |
} |
| 62 |
} |
| 63 |
|
| 64 |
/* end wdk_log_notify */ |