PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 1.7.2
GenerateBlocks v1.7.2
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / assets / css / dashboard.css
generateblocks / assets / css Last commit date
dashboard-global.css 5 years ago dashboard.css 3 years ago
dashboard.css
206 lines
1 .gblocks-sub-navigation {
2 display: flex;
3 justify-content: center;
4 margin-top: 10px;
5 }
6
7 .gblocks-sub-navigation a.button {
8 margin: 4px;
9 }
10
11 .gblocks-dashboard-intro-content {
12 padding: 60px;
13 font-size: 30px;
14 line-height: 1.3;
15 text-align: center;
16 margin: 0 auto;
17 max-width: 700px;
18 }
19
20 .gblocks-dashboard-intro-image {
21 width: 50%;
22 text-align: center;
23 }
24
25 .gblocks-dashboard-blocks {
26 display: flex;
27 flex-wrap: wrap;
28 justify-content: center;
29 max-width: 1300px;
30 margin-left: auto;
31 margin-right: auto;
32 }
33
34 .gblocks-block {
35 padding: 40px;
36 background: #fff;
37 background-image: linear-gradient(180deg, #fff 50%, rgba(0,0,0,0.02));
38 display: flex;
39 flex-direction: column;
40 width: 29%;
41 box-sizing: border-box;
42 margin: 0 2% 4%;
43 border-bottom: 2px solid #ddd;
44 border-right: 2px solid #ddd;
45 }
46
47 .gblocks-block svg {
48 width: 75px;
49 height: 75px;
50 fill: #006eb7;
51 }
52
53 .gblocks-block svg path:first-child {
54 fill: none;
55 }
56
57 .gblocks-block > *:last-child {
58 margin-bottom: 0;
59 }
60
61 .gblocks-block h3 {
62 margin-top: 30px;
63 font-size: 20px;
64 }
65
66 .gblocks-block p {
67 font-size: 15px;
68 margin: 0 0 1em;
69 }
70
71 .gblocks-button {
72 margin-top: auto;
73 background: #fff;
74 border: 1px solid;
75 flex-grow: 0;
76 padding: 15px 20px;
77 text-decoration: none;
78 color: #000;
79 font-size: 20px;
80 align-self: flex-start;
81 transition: color 500ms ease;
82 }
83
84 .gblocks-generatepress {
85 background: #fff;
86 padding: 60px;
87 }
88
89 .gblocks-inside-generatepress {
90 display: flex;
91 max-width: 1200px;
92 margin: 0 auto;
93 align-items: center;
94 }
95
96 .gblocks-generatepress-content {
97 width: 50%;
98 }
99
100 .gblocks-generatepress-content h2 {
101 font-size: 40px;
102 line-height: 1.5em;
103 font-weight: 300;
104 margin-top: 0;
105 }
106
107 .gblocks-generatepress-content p {
108 font-size: 17px;
109 line-height: 1.8;
110 }
111
112 .gblocks-generatepress-content .stats {
113 display: flex;
114 font-size: 15px;
115 line-height: 1.6;
116 margin-top: 20px;
117 margin-bottom: 20px;
118 }
119
120 .gblocks-generatepress-content .stats > * {
121 padding-right: 30px;
122 }
123
124 .gblocks-generatepress-content .stats strong {
125 font-size: 20px;
126 }
127
128 .gblocks-generatepress-image {
129 width: 50%;
130 display: flex;
131 align-items: center;
132 justify-content: center;
133 }
134
135 .gblocks-generatepress-content .gblocks-button {
136 color: #006eb7;
137 display: inline-block;
138 margin-top: 10px;
139 }
140
141 .gblocks-generatepress-content .gblocks-button:hover {
142 color: #000;
143 }
144
145 .gblocks-getting-started {
146 padding: 0 60px 60px;
147 text-align: center;
148 }
149
150 .gblocks-getting-started img {
151 display: block;
152 margin: 0 auto;
153 }
154
155 .gblocks-getting-started p {
156 font-size: 20px;
157 max-width: 450px;
158 margin: 0 auto;
159 }
160
161 .gblocks-getting-started p:first-child:before {
162 content: "";
163 display: block;
164 height: 1px;
165 width: 150px;
166 background: #d8e2e4;
167 margin: 0 auto 40px;
168 }
169
170 @media (max-width: 1180px){
171 .gblocks-inside-generatepress {
172 flex-wrap: wrap;
173 }
174
175 .gblocks-generatepress-content {
176 width: 100%;
177 }
178
179 .gblocks-generatepress-image {
180 width: 100%;
181 order: -1;
182 }
183 }
184
185 @media (max-width: 1000px) {
186 .gblocks-block {
187 width: 46%;
188 margin: 0 2% 4%;
189 }
190 }
191
192 @media (max-width: 520px) {
193 .gblocks-block {
194 width: 96%;
195 margin: 1% 2%;
196 }
197
198 .gblocks-getting-started img {
199 max-width: 100%;
200 }
201
202 .gblocks-generatepress-content .stats {
203 flex-wrap: wrap;
204 }
205 }
206