-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-blogger-sample-layout-widgets.html
162 lines (150 loc) · 5.16 KB
/
google-blogger-sample-layout-widgets.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Civic Innovations Google Blogger Sample Layout Widgets</title>
<style>
body {
margin:0;
border:0;
padding:0;
background-color:#FFFF00;
color:#000000;
}
header, .navbar, .midbar, footer {
margin:0 auto;
border:0;
padding:0;
background-color:#000000;
color:#FFFFFF;
}
main, .sidebar, .footer-widget {
margin:0;
border:0;
padding:0;
background-color:#00FF00;
color:#000000;
}
article, .main-widget, .sidebar-widget {
margin:0;
border:0;
padding:0;
background-color:#0000FF;
color:#FFFFFF;
}
p {
margin:0;
border:0;
padding:1vw;
}
body { font:1rem Georgia; }
header { font:bold 1.5em Tahoma; }
.navbar { font:bold 1.15em Tahoma; }
.midbar, footer { font:bold 0.5em Tahoma; }
article { font:1.5em Georgia; }
@media (max-width:9999px) {
header, .navbar, .midbar, footer {
max-width:980px;
}
.midbar {
display:flex;
flex-direction:row;
justify-content:space-between;
}
/* MAIN FLEX */
main { width:70%; }
.sidebar { width:30%; }
:root { font-size:4vw; }
}
@media (max-width:980px) {
:root { font-size:3vw; }
}
@media (max-width:600px) {
:root { font-size:2vw; }
.midbar {
display:flex;
flex-direction:column;
justify-content:space-between;
}
main, .sidebar {
width:100%;
}
}
</style>
</head>
<body>
<header>
<p>Header Widget</p>
</header>
<nav class="navbar">
<p>PageList Widget</p>
</nav>
<section class="midbar">
<main>
<article>
<p>Blog Widget</p>
</article>
<section class="main-widget">
<p>HTML Widget</p>
</section>
<section class="main-widget">
<p>Image Widget</p>
</section>
<section class="main-widget">
<p>Text Widget</p>
</section>
<section class="main-widget">
<p>TextList Widget</p>
</section>
<nav class="main-widget">
<p>LinkList Widget</p>
</nav>
<section class="main-widget">
<p>Profile Widget</p>
</section>
<section class="main-widget">
<p>FeaturedPost Widget</p>
</section>
<section class="main-widget">
<p>PopularPosts Widget</p>
</section>
</main>
<section class="sidebar">
<section class="sidebar-widget">
<p>Translate Widget</p>
</section>
<section class="sidebar-widget">
<p>BlogSearch Widget</p>
</section>
<section class="sidebar-widget">
<p>Subscribe Widget</p>
</section>
<section class="sidebar-widget">
<p>BlogArchive Widget</p>
</section>
<section class="sidebar-widget">
<p>Label Widget</p>
</section>
</section>
</section>
<footer>
<section class="footer-widget">
<p>ContactForm Widget</p>
</section>
<section class="footer-widget">
<p>ReportAbuse Widget</p>
</section>
<section class="footer-widget">
<p>Stats Widget</p>
</section>
<section class="footer-widget">
<p>Attribution Widget</p>
</section>
<section class="footer-widget">
<p>BloggerButton Widget</p>
</section>
</footer>
</body>
</html>