PluginProbe ʕ •ᴥ•ʔ
Starter Sites & Templates by Neve / trunk
Starter Sites & Templates by Neve vtrunk
1.4.1 1.4.0 1.3.0 1.2.29 1.2.28 1.2.6 1.2.7 1.2.8 1.2.9 trunk 1.0.10 1.0.11 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 1.1.22 1.1.23 1.1.24 1.1.25 1.1.26 1.1.27 1.1.28 1.1.29 1.1.3 1.1.30 1.1.31 1.1.32 1.1.33 1.1.34 1.1.35 1.1.36 1.1.37 1.1.38 1.1.39 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.3 1.2.4 1.2.5
templates-patterns-collection / assets / src / scss / _card.scss
templates-patterns-collection / assets / src / scss Last commit date
_card.scss 5 years ago _custom-tooltip.scss 3 years ago _demo-site-templates.scss 5 years ago _docnotice.scss 2 years ago _editor-selector.scss 2 years ago _editor-tabs.scss 4 years ago _feedback.scss 2 years ago _general.scss 3 years ago _header.scss 3 years ago _import-modal.scss 3 years ago _library.scss 2 years ago _license.scss 3 years ago _media-queries.scss 4 years ago _mock.scss 5 years ago _new-tc-notice.scss 1 year ago _notification.scss 4 years ago _preview.scss 5 years ago _search.scss 4 years ago _settings.scss 2 years ago _starter-site-card.scss 4 years ago _stepper.scss 3 years ago _sticky-nav.scss 5 years ago _vars.scss 5 years ago
_card.scss
59 lines
1 .card {
2 width: 100%;
3 display: flex;
4 max-width: unset;
5 min-width: unset;
6 border: 1px solid $grey;
7 flex-direction: column;
8 padding: 30px 40px;
9 margin: 0;
10 align-self: flex-start;
11 flex-grow: 0;
12
13 .card-header {
14 flex-direction: row;
15 display: flex;
16 align-items: center;
17 .title {
18 font-size: 18px;
19 line-height: 1.5;
20 }
21 .icon {
22 margin-right: 10px;
23 &.dashicon {
24 width: 33px;
25 height: 33px;
26 fill: $blue;
27 }
28 }
29 }
30 .card-content {
31 display: flex;
32 flex-direction: column;
33 flex-grow: 1;
34 a, button {
35 align-self: flex-start;
36 margin-top: auto;
37 }
38 }
39
40 p {
41 font-size: 15px;
42 color: #616161;
43 }
44
45 .card-description {
46 margin: 15px 0 25px;
47 }
48 }
49 @mixin card--desktop() {
50 .card {
51 padding: 20px 30px;
52 }
53 }
54 @mixin card--desktop-large() {
55 .card {
56 padding: 30px 40px;
57 }
58 }
59