PluginProbe
WP Directory Kit / 1.2.7
WP Directory Kit v1.2.7
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / public / css / wdk-notify.css

wdk-notify.css in WP Directory Kit 1.2.7, at public/css/wdk-notify.css

64 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 */