PluginProbe
WP Ultimate Post Grid / 3.3.0
WP Ultimate Post Grid v3.3.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / assets / css / template / template_reset.scss

template_reset.scss in WP Ultimate Post Grid 3.3.0, at assets/css/template/template_reset.scss

75 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wpupg-grid .wpupg-item {
2 box-sizing: border-box;
3 }
4
5 .wpupg-item {
6 // Clearfix
7 overflow: auto;
8 zoom: 1;
9 text-align: left;
10 clear: both;
11
12 * {
13 box-sizing: border-box;
14 }
15
16 ol, ul {
17 -webkit-margin-before: 0;
18 -webkit-margin-after: 0;
19 -webkit-padding-start: 0;
20 margin: 0;
21 padding: 0;
22 }
23
24 li {
25 font-size: 1em;
26 margin: 0 0 0 32px;
27 padding: 0;
28 }
29
30 p {
31 font-size: 1em;
32 margin: 0;
33 padding: 0;
34
35 &:first-letter {
36 font-size: inherit;
37 line-height: inherit;
38 color: inherit;
39 margin: inherit;
40 padding: inherit;
41 font-family: inherit;
42 }
43 }
44
45 li {
46 list-style-position: outside;
47
48 &:before {
49 display: none;
50 }
51 }
52
53 h1, h2, h3, h4, h5, h6 {
54 clear: none;
55 font-variant: normal;
56 text-transform: none;
57 letter-spacing: normal;
58 margin: 0;
59 padding: 0;
60 }
61 }
62
63 .wpupg-grid a.wpupg-item.wpupg-item-link {
64 transition: none;
65 text-decoration: none;
66 box-shadow: none;
67 }
68
69 .rtl .wpupg-item {
70 text-align: right;
71
72 li {
73 margin: 0 32px 0 0;
74 }
75 }