change styling for tags in footer
was not wrapping and got cramped on mobile
This commit is contained in:
parent
4982e32350
commit
7f56115ccf
2 changed files with 6 additions and 3 deletions
4
.dev-log
4
.dev-log
|
@ -1,9 +1,9 @@
|
||||||
2024/01/21
|
2024/01/21
|
||||||
- .txt -> .scm for better source viewing in git forge
|
- .txt -> .scm for better source viewing in git forge
|
||||||
START HERE:
|
|
||||||
- pick a license
|
|
||||||
- fix footer styling (tagged section is cramped with flex-row
|
- fix footer styling (tagged section is cramped with flex-row
|
||||||
especially on mobile)
|
especially on mobile)
|
||||||
|
START HERE:
|
||||||
|
- pick a license
|
||||||
- add view source link to every page (git forge of source/resource
|
- add view source link to every page (git forge of source/resource
|
||||||
not static/resource; we're here for the sexprs)
|
not static/resource; we're here for the sexprs)
|
||||||
TODO:
|
TODO:
|
||||||
|
|
|
@ -50,7 +50,7 @@ span.noscript p {
|
||||||
span.hx-target section {
|
span.hx-target section {
|
||||||
border: solid 1px var(--link-color);
|
border: solid 1px var(--link-color);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 0 10;
|
padding: 5 10;
|
||||||
margin: 3;
|
margin: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,6 +62,8 @@ a {
|
||||||
font-family: 'Courier New', Courier, monospace;
|
font-family: 'Courier New', Courier, monospace;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: var(--link-color);
|
color: var(--link-color);
|
||||||
|
position: relative;
|
||||||
|
top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:visited {
|
a:visited {
|
||||||
|
@ -132,6 +134,7 @@ p {
|
||||||
ul.tag-list {
|
ul.tag-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
margin: 6 0;
|
margin: 6 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue