PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.8.1
GiveWP – Donation Plugin and Fundraising Platform v4.8.1
4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 All 253 releases
give / src / Views / Components / Notice / style.module.scss
style.module.scss
38 lines 836 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .notice {
2 height: auto;
3 width: 100%;
4 display: flex;
5 flex-direction: column;
6 align-items: center;
7 justify-content: flex-start;
8 font-weight: 500;
9
10 .card {
11 box-shadow: 0 3px 6px rgba(68, 68, 68, 0.05), 0 3px 6px rgba(68, 68, 68, 0.05);
12 display: flex;
13 flex-direction: column;
14 align-items: center;
15 text-align: center;
16 border-radius: 5px;
17 overflow: hidden;
18 margin-top: 100px;
19 margin-bottom: 120px;
20 background: #fff;
21 width: 20em;
22 padding: 2.5em 3em 1.5em;
23
24 h2 {
25 font-size: 20px;
26 margin-bottom: 25px;
27 font-weight: 500;
28 line-height: 1.2;
29 }
30
31 p {
32 font-size: 13px;
33 font-weight: 400;
34 margin: 0;
35 }
36 }
37 }
38