PluginProbe
WP Ultimate Post Grid / 1.7.2
WP Ultimate Post Grid v1.7.2
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 / css / layout_base.scss

layout_base.scss in WP Ultimate Post Grid 1.7.2, at css/layout_base.scss

147 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wpupg-clear {
2 float: none;
3 clear: both;
4 }
5
6 .wpupg-meta {
7 display: none;
8 }
9
10 html body.rtl .wpupg-container {
11 text-align: right;
12 }
13
14 html body .wpupg-container {
15 position: relative;
16 float: left;
17 text-align: left;
18 font-size: 14px;
19
20 span {
21 display: inline-block;
22 }
23
24 * {
25 border: 0;
26
27 -webkit-margin: 0;
28 -moz-margin: 0;
29 margin: 0;
30
31 -webkit-padding: 0;
32 -moz-padding: 0;
33 padding: 0;
34
35 background: none;
36
37 -webkit-border-radius: 0px;
38 -moz-border-radius: 0px;
39 border-radius: 0px;
40
41 -webkit-box-shadow: none;
42 -moz-box-shadow: none;
43 box-shadow: none;
44
45 -webkit-box-sizing: border-box;
46 -moz-box-sizing: border-box;
47 box-sizing: border-box;
48
49 color: inherit;
50 font-size: inherit;
51 line-height: 1.4;
52 font-weight: normal;
53 }
54
55 b, strong {
56 font-weight: bold;
57 }
58
59 hr {
60 background-color: #ccc !important;
61 }
62
63 // Reset CSS as best as possible (based on normalize.css)
64 .wpupg-paragraph {
65 h1 {
66 font-size: 2em;
67 margin: 0.67em 0;
68 }
69
70 h2 {
71 font-size: 1.5em;
72 margin: 0.83em 0;
73 }
74
75 h3 {
76 font-size: 1.17em;
77 margin: 1em 0;
78 }
79
80 h4 {
81 font-size: 1em;
82 margin: 1.33em 0;
83 }
84
85 h5 {
86 font-size: 0.83em;
87 margin: 1.67em 0;
88 }
89
90 h6 {
91 font-size: 0.75em;
92 margin: 2.33em 0;
93 }
94
95 p, pre {
96 margin: 1em 0;
97 }
98
99 code, kbd, pre, samp {
100 font-family: monospace, serif;
101 _font-family: 'courier new', monospace;
102 font-size: 1em;
103 }
104
105 blockquote {
106 margin: 1em 40px;
107 }
108
109 b, strong {
110 font-weight: bold;
111 }
112
113 dl, menu, ol, ul {
114 margin: 1em 0;
115 }
116
117 dd {
118 margin: 0 0 0 40px;
119 }
120
121 menu, ol, ul {
122 padding: 0 0 0 40px;
123 }
124
125 .aligncenter {
126 margin: 0 auto;
127 }
128 }
129
130 table {
131 table-layout: auto;
132 border-collapse: collapse;
133 width: 100%;
134 }
135
136 a {
137 text-decoration: none;
138
139 &:hover {
140 text-decoration: underline;
141 }
142 }
143
144 .wpupg-responsive-mobile {
145 display: none;
146 }
147 }