Browse Source

Fix tags screwing up the layout below

Because they float they would screw up the element following them.
Lucas Stadler 9 years ago
parent
commit
f73544cb6e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      go/blog/blog.go

+ 2 - 0
go/blog/blog.go

42
var defaultStyle = `
42
var defaultStyle = `
43
article {
43
article {
44
	margin-bottom: 2em;
44
	margin-bottom: 2em;
45
	clear: left;
45
}
46
}
46
47
47
article header {
48
article header {
98
	color: #555;
99
	color: #555;
99
	font-size: smaller;
100
	font-size: smaller;
100
	margin-bottom: 1em;
101
	margin-bottom: 1em;
102
	clear: left;
101
}
103
}
102
`
104
`
103
105