diff options
| author | Fuwn <[email protected]> | 2023-09-13 20:37:40 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-13 20:37:40 -0700 |
| commit | e4010e7043f129a9d24161a15ead7d4ffa84855c (patch) | |
| tree | ff5331a7a503270098823f730736878a00abfd98 /css/index.css | |
| parent | feat(html): load fade (diff) | |
| download | startpage-e4010e7043f129a9d24161a15ead7d4ffa84855c.tar.xz startpage-e4010e7043f129a9d24161a15ead7d4ffa84855c.zip | |
feat(css): center items
Diffstat (limited to 'css/index.css')
| -rw-r--r-- | css/index.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/css/index.css b/css/index.css index 833b404..1df6417 100644 --- a/css/index.css +++ b/css/index.css @@ -57,6 +57,18 @@ body { border-bottom: 1px solid var(--color1); padding-bottom: 10px; margin-bottom: 5px; + display: flex; + justify-content: space-between; +} + +.link-collection a { + flex: 1; + text-align: center; + margin-right: 20px; +} + +.link-collection a:last-child { + margin-right: 0; } img { @@ -71,4 +83,5 @@ img { a { color: var(--color2); + text-decoration: none; } |