list alignment
This commit is contained in:
parent
73c612d244
commit
6508941a0f
1 changed files with 11 additions and 3 deletions
|
@ -151,9 +151,10 @@ article ul,
|
||||||
article ol,
|
article ol,
|
||||||
article table{
|
article table{
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
width:90%;
|
||||||
}
|
}
|
||||||
article p{
|
article p{
|
||||||
width:100%;
|
width:90%;
|
||||||
}
|
}
|
||||||
article img{
|
article img{
|
||||||
|
|
||||||
|
@ -168,18 +169,25 @@ blockquote {
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery{
|
.gallery{
|
||||||
width:70%;
|
width:80%;
|
||||||
display:flex;
|
display:flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
|
|
||||||
}
|
}
|
||||||
.gallery>*{
|
.gallery>*{
|
||||||
margin:0.1rem;
|
margin:0.1rem;
|
||||||
border:1px solid var(--theme-color-accent);
|
border:1px solid var(--theme-color-accent);
|
||||||
}
|
}
|
||||||
|
.gallery p{
|
||||||
|
width:100%;
|
||||||
|
display:flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
audio{
|
audio{
|
||||||
padding:1rem;
|
padding:1rem;
|
||||||
|
|
Loading…
Reference in a new issue