minor overhaul
This commit is contained in:
parent
e73edae342
commit
8f56177ead
2 changed files with 9 additions and 4 deletions
|
@ -17,7 +17,7 @@
|
||||||
<guid>{{ .Permalink }}</guid>{{ if .Params.gif}}
|
<guid>{{ .Permalink }}</guid>{{ if .Params.gif}}
|
||||||
<enclosure url="{{.Site.BaseURL}}{{.Params.gif}}" />
|
<enclosure url="{{.Site.BaseURL}}{{.Params.gif}}" />
|
||||||
{{end}}{{ if .Params.video}}
|
{{end}}{{ if .Params.video}}
|
||||||
<enclosure url="{{.Site.BaseURL}}{{.Params.video}}" />
|
<enclosure url="{{.Params.video}}" />
|
||||||
{{end}}{{ if .Params.audio}}
|
{{end}}{{ if .Params.audio}}
|
||||||
<enclosure url="{{.Site.BaseURL}}{{.Params.audio}}" />
|
<enclosure url="{{.Site.BaseURL}}{{.Params.audio}}" />
|
||||||
{{end}}{{ if .Params.image}}
|
{{end}}{{ if .Params.image}}
|
||||||
|
|
|
@ -244,9 +244,10 @@ article {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||||
max-width: 60rem;
|
width: 60rem;
|
||||||
font-size:25px;
|
font-size:25px;
|
||||||
line-height:34px;
|
line-height:34px;
|
||||||
|
max-width:90vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
article table {
|
article table {
|
||||||
|
@ -334,14 +335,18 @@ article img {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
article video,
|
article video{
|
||||||
article iframe {
|
|
||||||
height: 40rem;
|
height: 40rem;
|
||||||
width: 95%;
|
width: 95%;
|
||||||
max-height: 60vh;
|
max-height: 60vh;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
article iframe{
|
||||||
|
height:auto;
|
||||||
|
width:80%;
|
||||||
|
aspect-ratio: 4/2.5;
|
||||||
|
}
|
||||||
|
|
||||||
article>section>a {
|
article>section>a {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in a new issue