Skip to content

Commit cc61b96

Browse files
committed
Fix author position, add wrap div on compilers page, fix favicon tag
1 parent 1f215ba commit cc61b96

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

assets/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,8 @@ Not really any of those on the website though AFAIK.
239239
color: #ddd;
240240
display: block;
241241
max-width: 600px;
242-
margin: 0 .5em;
242+
margin: 0 auto;
243+
padding-right: 10px;
243244
text-align: right;
244245
}
245246

src/backend/Generate.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ favicon :: H.Html
9191
favicon =
9292
H.link
9393
! A.rel "shortcut icon"
94-
! A.size "16x16, 32x32, 48x48, 64x64, 128x128, 256x256"
94+
! A.sizes "16x16, 32x32, 48x48, 64x64, 128x128, 256x256"
9595
! A.href "/favicon.ico"
9696

9797

src/pages/blog/compilers-as-assistants.elm

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ main =
1212
Blog.evan
1313
(Blog.Date 2015 11 19)
1414
[ Center.markdown "600px" content
15-
, div [ class "intrinsic-container" ]
16-
[ iframe
17-
[ src "https://www.youtube.com/embed/ARJ8cAGm6JE?start=60&end=87&rel=0&autoplay=0"
18-
, attribute "allowfullscreen" ""
19-
] []
20-
]
15+
, div [Center.style "600px"]
16+
[div [ class "intrinsic-container" ]
17+
[ iframe
18+
[ src "https://www.youtube.com/embed/ARJ8cAGm6JE?start=60&end=87&rel=0&autoplay=0"
19+
, attribute "allowfullscreen" ""
20+
] []
21+
]
22+
]
2123
, Center.markdown "600px" afterVideo
2224
, image "big-record"
2325
, Center.markdown "600px" afterTypeDiffs

0 commit comments

Comments
 (0)