From e380614a2c610a2fe56eec4b9f2e57bc7adce53f Mon Sep 17 00:00:00 2001 From: deepend-tildeclub Date: Tue, 5 May 2020 22:47:07 -0600 Subject: [PATCH 1/4] minor layout changes --- footer.php | 3 -- index.php | 109 +++++++++++++++++++++++++++-------------------------- style.css | 1 + 3 files changed, 57 insertions(+), 56 deletions(-) diff --git a/footer.php b/footer.php index 96c5847..b127b96 100644 --- a/footer.php +++ b/footer.php @@ -1,9 +1,6 @@
- -
- diff --git a/index.php b/index.php index 8859566..e58d914 100644 --- a/index.php +++ b/index.php @@ -41,41 +41,7 @@
  • most of the info from previous wiki iterations are now consolidated on our new wiki
  • we have a new donation page set up on liberapay
  • -
    -

    tilde.club gold star supporters

    - -

    Tilde.Club is supported by a global community of good people. We - don't rank people by the amount they give, only by the fact that they - gave. Here's who has donated! When you're on the server, THANK - THEM.

    - -
    @@ -90,28 +56,65 @@ RECENTLY CHANGED PAGES you can see that too

    -

    here are the home pages of our users

    -

    this list does not include people who haven't changed their page yet

    -

    if you're not seeing yourself listed here, change your page from the default.

    -

    list all users

    +
    +

    tilde.club gold star supporters

    +

    Tilde.Club is supported by a global community of + good people. We don't rank people by the amount + they give, only by the fact that they gave. + Here's who has donated! When you're on the + server, THANK THEM.

    + + -
      - -
    1. ~
    2. - -
    + + +
    + +

    here are the home pages of our users

    +

    this list does not include people who haven't changed their page yet

    +

    if you're not seeing yourself listed here, change your page from the default.

    +

    list all users

    +
      + +
    1. ~
    2. + +
    + +
    + +

    big kudos and thanks to the people who built the original tilde.club!

    diff --git a/style.css b/style.css index 32ef506..264b164 100644 --- a/style.css +++ b/style.css @@ -14,6 +14,7 @@ } ol { margin-left: 1em; + column-count: 4; } body { margin: auto; From e7f092ac052e540e35c31ccb371b936b2f3e65c5 Mon Sep 17 00:00:00 2001 From: Travis Briggs Date: Tue, 5 May 2020 22:16:03 -0700 Subject: [PATCH 2/4] Put user list into 4 unordered columns --- style.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 264b164..80685bb 100644 --- a/style.css +++ b/style.css @@ -12,10 +12,21 @@ border: 6px double #fb5; padding: 1em; } -ol { - margin-left: 1em; - column-count: 4; + +.user-list { + display: flex; + flex-flow: row wrap; + justify-content: space-evenly; } +.user-list li { + margin-left: 5%; + width: 20%; +} +.user-list::after { + content: ""; + flex: auto; +} + body { margin: auto; padding: 1em; From 0c463fdeda7bf618d509c13254c915f01466f6ba Mon Sep 17 00:00:00 2001 From: Travis Briggs Date: Tue, 5 May 2020 22:19:28 -0700 Subject: [PATCH 3/4] Change ol -> ul and add class for previous change --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index e58d914..ac2770a 100644 --- a/index.php +++ b/index.php @@ -96,7 +96,7 @@

    this list does not include people who haven't changed their page yet

    if you're not seeing yourself listed here, change your page from the default.

    list all users

    -
      +
      • ~
      • -
    + From 809378f8642785ed64e962fe98024ddd7c163b16 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Tue, 5 May 2020 23:38:47 -0600 Subject: [PATCH 4/4] Update style.css --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 80685bb..e0c7914 100644 --- a/style.css +++ b/style.css @@ -21,6 +21,9 @@ .user-list li { margin-left: 5%; width: 20%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .user-list::after { content: "";