diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/contacts.pug | 15 | ||||
-rw-r--r-- | views/create.pug | 6 | ||||
-rw-r--r-- | views/forum_search.pug | 2 | ||||
-rw-r--r-- | views/forum_view.pug | 7 | ||||
-rw-r--r-- | views/game_stats.pug | 2 | ||||
-rw-r--r-- | views/games_active.pug | 2 | ||||
-rw-r--r-- | views/games_finished.pug | 2 | ||||
-rw-r--r-- | views/games_public.pug | 2 | ||||
-rw-r--r-- | views/head.pug | 2 | ||||
-rw-r--r-- | views/index.pug | 20 | ||||
-rw-r--r-- | views/join.pug | 24 | ||||
-rw-r--r-- | views/message_inbox.pug | 18 | ||||
-rw-r--r-- | views/message_outbox.pug | 10 | ||||
-rw-r--r-- | views/message_send.pug | 2 | ||||
-rw-r--r-- | views/stats.pug | 5 | ||||
-rw-r--r-- | views/user.pug | 5 | ||||
-rw-r--r-- | views/user_stats.pug | 4 |
17 files changed, 66 insertions, 62 deletions
diff --git a/views/contacts.pug b/views/contacts.pug index 64d39d0..8b42e73 100644 --- a/views/contacts.pug +++ b/views/contacts.pug @@ -5,17 +5,16 @@ html include head title Contacts style. - table { min-width: 400px } - td a.red { text-decoration: none; color: brown; font-size: 14px; margin-left: 8px; } - td a.blue { text-decoration: none; color: black; font-size: 16px; margin-left: 8px; } - td a.blue:hover { color: blue; } + td a.red { text-decoration: none; color: var(--color-red); font-size: 14px; margin-left: 8px; } + td a.blue { text-decoration: none; color: var(--color-black); font-size: 16px; margin-left: 8px; } + td a.blue:hover { color: var(--color-blue); } body include header article h1 Friends & Enemies - table + table.half.striped thead tr th Friends @@ -26,8 +25,8 @@ html tr td a.black(href="/user/"+who.name)= who.name - td= who.atime - td.r + td.w= who.atime + td.w.r a.blue(href="/message/send/"+who.name) 📝 a.red(href="/contacts/remove/"+who.name) ❌ else @@ -37,7 +36,7 @@ html if enemies.length > 0 p - table + table.half.striped thead tr th Blacklist diff --git a/views/create.pug b/views/create.pug index 95e0ea0..717c4f0 100644 --- a/views/create.pug +++ b/views/create.pug @@ -4,11 +4,10 @@ html head include head title= title.title_name - style. - form { margin-left: 200px; width: calc(50rem - 200px); } body include header article + h1= title.title_name div.logo @@ -23,11 +22,12 @@ html option(value=scenario)= scenario else input(type="hidden" name="scenario" value=scenarios[0]) + | !{ title.create_html } p Notice: br - input(type="text" autocomplete="off" name="notice" size=50 placeholder="What are you looking for?") + input(type="text" autocomplete="off" name="notice" size=45 placeholder="What are you looking for?") p Pace: br diff --git a/views/forum_search.pug b/views/forum_search.pug index f7d1b42..18df6b0 100644 --- a/views/forum_search.pug +++ b/views/forum_search.pug @@ -9,7 +9,7 @@ html article h1 Forum Search Results - table + table.wide.striped thead tr th Author diff --git a/views/forum_view.pug b/views/forum_view.pug index 1f70c8c..983ccf2 100644 --- a/views/forum_view.pug +++ b/views/forum_view.pug @@ -8,12 +8,17 @@ html style. .unread { font-weight: bold } tbody a { display: block } + @media (max-width: 400px) { + td:nth-child(2) { display: none } + th:nth-child(2) { display: none } + } + body include header article h1 Forum - table + table.wide.striped thead tr th Subject diff --git a/views/game_stats.pug b/views/game_stats.pug index a60d7cb..692c30b 100644 --- a/views/game_stats.pug +++ b/views/game_stats.pug @@ -9,7 +9,7 @@ html article h1 #{title_name} - Ranking - table(style="min-width:auto") + table.striped thead tr th Player diff --git a/views/games_active.pug b/views/games_active.pug index 9e4b909..a65f9be 100644 --- a/views/games_active.pug +++ b/views/games_active.pug @@ -11,7 +11,7 @@ html meta(http-equiv="refresh" content=600) body include header - article + article.wide h1 Your games if open_games.length > 0 diff --git a/views/games_finished.pug b/views/games_finished.pug index 26d0378..8d71717 100644 --- a/views/games_finished.pug +++ b/views/games_finished.pug @@ -6,7 +6,7 @@ html title= SITE_NAME body include header - article + article.wide if user && user.user_id === who.user_id h1 Your finished games else diff --git a/views/games_public.pug b/views/games_public.pug index 62cdfcf..cf102f0 100644 --- a/views/games_public.pug +++ b/views/games_public.pug @@ -8,7 +8,7 @@ html meta(http-equiv="refresh" content=900) body include header - article + article.wide h1 Public Games h2 Open diff --git a/views/head.pug b/views/head.pug index cffc55a..b10c3ce 100644 --- a/views/head.pug +++ b/views/head.pug @@ -21,7 +21,7 @@ mixin gamecover(title_id) mixin forumpost(row,show_buttons) .post(id=row.post_id) .head - .from: a(href="/user/"+row.author_name)= row.author_name + .from: b: a.black(href="/user/"+row.author_name)= row.author_name .time= row.ctime if row.edited | diff --git a/views/index.pug b/views/index.pug index 190018b..60da6ac 100644 --- a/views/index.pug +++ b/views/index.pug @@ -8,30 +8,26 @@ html title= SITE_NAME style. div.list { - display: flex; - flex-wrap: wrap; - gap: 12px; + margin: 24px 0; + display: grid; + grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); + gap: 24px 12px; } div.i { - width: 170px; height: 200px; text-align: center; margin-bottom: 6px; } div.t { text-align: center; - width: 170px; - } - div.t a:not(:hover) { - color: black; - text-decoration: none; } div.i img { - box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.5); + box-shadow: var(--drop-shadow); + border: var(--thin-border); } body include header - article + article.wide h1= SITE_NAME p #{SITE_NAME} is a website where you can play historic board games online. @@ -45,7 +41,7 @@ html div.i +gamecover(title.title_id) div.t - a(href="/"+title.title_id)= title.title_name + a.black(href="/"+title.title_id)= title.title_name p!= process.env.SITE_INVITE diff --git a/views/join.pug b/views/join.pug index 621ab0a..d75ef4d 100644 --- a/views/join.pug +++ b/views/join.pug @@ -8,17 +8,16 @@ html game.title_id) title= game.title_name style. - table { min-width: 0; } - th,td { border: 1px solid black; } - a.red { text-decoration: none; color: brown; font-size: 15px; float: right; } - a.green { text-decoration: none; color: green; font-size: 15px; float: right; } - th { white-space: nowrap; background-color: gainsboro; } - td { width: 180px; background-color: white; } - #message { background-color: whitesmoke; } + th,td { border: var(--table-border); } + a.red { text-decoration: none; color: var(--color-red); font-size: 15px; float: right; } + a.green { text-decoration: none; color: var(--color-green); font-size: 15px; float: right; } + td, th { border: var(--thin-border); } + td { width: 180px; } .hide { display: none; } - td.is_invite { background-color: honeydew } - td.enemy { background-color: #f66 } - td.enemy::before { content: "\1f6ab "; color: #000; font-size: 15px; } + td.is_invite { background-color: var(--color-table-invite); } + td.is_active { background-color: var(--color-table-active); } + td.enemy { background-color: var(--color-table-danger); } + td.enemy::before { content: "\1f6ab "; font-size: 15px; } script. let game = !{ JSON.stringify(game) } let roles = !{ JSON.stringify(roles) } @@ -73,8 +72,6 @@ html p i= game.notice - br(clear="left") - dialog(id="invite") | Invite a friend: br @@ -92,8 +89,9 @@ html tbody each role in roles tr - th(id="role_"+role.replace(/ /g, "_")+"_name")= role + th.w(id="role_"+role.replace(/ /g, "_")+"_name")= role td(id="role_"+role.replace(/ /g, "_")) - + tfoot tr td#message(colspan=2) - diff --git a/views/message_inbox.pug b/views/message_inbox.pug index 0e39ea2..c6001f5 100644 --- a/views/message_inbox.pug +++ b/views/message_inbox.pug @@ -7,6 +7,10 @@ html style. .unread { font-weight: bold } td a { display: block } + @media (max-width: 400px) { + td:nth-child(3) { display: none } + th:nth-child(3) { display: none } + } body include header article @@ -15,7 +19,7 @@ html p a(href="/message/send") Send message - table + table.wide.striped thead tr th From @@ -23,12 +27,12 @@ html th Date tbody each row in messages - tr - td - a.black(href="/user/"+row.from_name)= row.from_name - td(class=row.is_read?"read":"unread") - a.black(href="/message/read/"+row.message_id)= row.subject - td= row.time + - let subject = row.subject + - if (subject.length > 50) subject = subject.substring(0,40) + "..." + tr(class=row.is_read?"read":"unread") + td: a.black(href="/user/"+row.from_name)= row.from_name + td: a.black(href="/message/read/"+row.message_id)= subject + td.w= row.time else tr td(colspan=3) No messages. diff --git a/views/message_outbox.pug b/views/message_outbox.pug index f305d83..f42ef7f 100644 --- a/views/message_outbox.pug +++ b/views/message_outbox.pug @@ -6,6 +6,10 @@ html title Outbox style. td a { display: block } + @media (max-width: 400px) { + td:nth-child(3) { display: none } + th:nth-child(3) { display: none } + } script. function delete_all() { let warning = "Are you sure you want to delete ALL the messages?" @@ -20,7 +24,7 @@ html p a(href="/message/send") Send message - table + table.wide.striped thead tr th From @@ -30,8 +34,8 @@ html each row in messages tr td: a.black(href="/user/"+row.to_name)= row.to_name - td: a.black(href="/message/read/"+row.message_id)= row.subject - td= row.time + td.e: a.black(href="/message/read/"+row.message_id)= row.subject + td.w= row.time else tr td(colspan=3) No messages. diff --git a/views/message_send.pug b/views/message_send.pug index 48e7b64..fbabd71 100644 --- a/views/message_send.pug +++ b/views/message_send.pug @@ -4,8 +4,6 @@ html head include head title Send Message - style. - input, textarea { width: min(45rem,100%) } script. function next(event,sel) { if (event.keyCode === 13) { diff --git a/views/stats.pug b/views/stats.pug index 6c8a268..ececb85 100644 --- a/views/stats.pug +++ b/views/stats.pug @@ -5,18 +5,17 @@ html include head title Game Statistics style. - table { min-width: auto; margin-bottom: 30px; } + table { margin-bottom: 30px; } td:not(:first-child) { text-align: right; } th:not(:first-child) { text-align: right; } td:not(:first-child) { width: 50px; } - td:first-child { width: 400px; } body include header article h1 Game Statistics - function p(t,r) { return r > 0 ? Math.round(r*100/t) + "%" : "" } each row in stats - table + table.half.striped thead tr th diff --git a/views/user.pug b/views/user.pug index abb7865..dbadd36 100644 --- a/views/user.pug +++ b/views/user.pug @@ -12,8 +12,9 @@ html white-space: pre-wrap; font-style: italic; padding: 8px 12px; - border-left: 4px solid silver; - background-color: whitesmoke; + border: var(--thin-border); + box-shadow: var(--drop-shadow); + background-color: var(--color-text); } body include header diff --git a/views/user_stats.pug b/views/user_stats.pug index dee2883..3b201ef 100644 --- a/views/user_stats.pug +++ b/views/user_stats.pug @@ -11,7 +11,7 @@ html article h1 Statistics for #{who.name} - table(style="min-width:auto") + table.striped thead tr th Title @@ -37,7 +37,7 @@ html td.r= all_total td.r= Math.round(all_won*100/all_total) + "%" - table(style="min-width:auto") + table.striped thead tr th Title |