PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 2.0.0
Subscriptions for WooCommerce with Stripe Recurring Payments v2.0.0
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
subscription / assets / css / admin-components / empty.css

empty.css in Subscriptions for WooCommerce with Stripe Recurring Payments 2.0.0, at assets/css/admin-components/empty.css

44 lines 1005 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* --------------------------------------------------------------------------
2 Empty state
3 -------------------------------------------------------------------------- */
4 .wpsubs-empty {
5 display: flex;
6 flex-direction: column;
7 align-items: center;
8 justify-content: center;
9 padding: 56px 28px;
10 text-align: center;
11 border: 1px dashed var(--wpsubs-border);
12 border-radius: var(--wpsubs-radius);
13 background: var(--wpsubs-surface);
14 }
15
16 .wpsubs-empty__icon {
17 display: inline-flex;
18 align-items: center;
19 justify-content: center;
20 width: 68px;
21 height: 68px;
22 margin-bottom: 22px;
23 border-radius: 50%;
24 font-size: 1.9rem;
25 line-height: 1;
26 background: var(--wpsubs-brand-light);
27 box-shadow: 0 0 0 8px rgba(255, 77, 0, 0.06);
28 }
29
30 .wpsubs-empty__title {
31 font-size: 16px;
32 font-weight: 600;
33 color: var(--wpsubs-text-muted);
34 margin: 0 0 10px;
35 }
36
37 .wpsubs-empty__desc {
38 font-size: 13px;
39 color: var(--wpsubs-text-subtle);
40 margin: 0;
41 line-height: 1.75;
42 max-width: 460px;
43 }
44