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}}
|
||||
<enclosure url="{{.Site.BaseURL}}{{.Params.gif}}" />
|
||||
{{end}}{{ if .Params.video}}
|
||||
<enclosure url="{{.Site.BaseURL}}{{.Params.video}}" />
|
||||
<enclosure url="{{.Params.video}}" />
|
||||
{{end}}{{ if .Params.audio}}
|
||||
<enclosure url="{{.Site.BaseURL}}{{.Params.audio}}" />
|
||||
{{end}}{{ if .Params.image}}
|
||||
|
|
|
@ -244,9 +244,10 @@ article {
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||
max-width: 60rem;
|
||||
width: 60rem;
|
||||
font-size:25px;
|
||||
line-height:34px;
|
||||
max-width:90vw;
|
||||
}
|
||||
|
||||
article table {
|
||||
|
@ -334,14 +335,18 @@ article img {
|
|||
|
||||
}
|
||||
|
||||
article video,
|
||||
article iframe {
|
||||
article video{
|
||||
height: 40rem;
|
||||
width: 95%;
|
||||
max-height: 60vh;
|
||||
background-color: transparent;
|
||||
|
||||
}
|
||||
article iframe{
|
||||
height:auto;
|
||||
width:80%;
|
||||
aspect-ratio: 4/2.5;
|
||||
}
|
||||
|
||||
article>section>a {
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in a new issue