aboutsummaryrefslogtreecommitdiff
path: root/src/public/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/public/styles.css')
-rw-r--r--src/public/styles.css34
1 files changed, 28 insertions, 6 deletions
diff --git a/src/public/styles.css b/src/public/styles.css
index d401fc7..754eb54 100644
--- a/src/public/styles.css
+++ b/src/public/styles.css
@@ -93,14 +93,14 @@ a:visited {
93} 93}
94 94
95.sort-opts { 95.sort-opts {
96 display: flex; 96 display: grid;
97 flex-direction: row; 97 margin: 10px;
98 flex-wrap: wrap;
99 justify-content: space-between;
100} 98}
101 99
102.sort-opts a { 100.sort-opts {
103 margin: 10px; 101 grid-template-columns: repeat(2, 1fr);
102 grid-template-rows: repeat(5, 1fr);
103 grid-auto-flow: column;
104} 104}
105 105
106.footer { 106.footer {
@@ -234,6 +234,11 @@ form {
234 form { 234 form {
235 width: 40%; 235 width: 40%;
236 } 236 }
237 .sort-opts {
238 grid-template-columns: repeat(9, 1fr);
239 grid-template-rows: repeat(1, 1fr);
240 grid-auto-flow: row;
241 }
237} 242}
238 243
239@media (min-width: 1080px) { 244@media (min-width: 1080px) {
@@ -260,6 +265,11 @@ form {
260 form { 265 form {
261 width: 20%; 266 width: 20%;
262 } 267 }
268 .sort-opts {
269 grid-template-columns: repeat(9, 1fr);
270 grid-template-rows: repeat(1, 1fr);
271 grid-auto-flow: row;
272 }
263} 273}
264 274
265@media (min-width: 2560px) { 275@media (min-width: 2560px) {
@@ -267,6 +277,11 @@ form {
267 flex: 1 1 40%; 277 flex: 1 1 40%;
268 width: 40%; 278 width: 40%;
269 } 279 }
280 .sort-opts {
281 grid-template-columns: repeat(9, 1fr);
282 grid-template-rows: repeat(1, 1fr);
283 grid-auto-flow: row;
284 }
270} 285}
271 286
272.comment, .more { 287.comment, .more {
@@ -583,3 +598,10 @@ a.nav-link {
583.comment-info-container > p { 598.comment-info-container > p {
584 margin-top: 0px; 599 margin-top: 0px;
585} 600}
601
602select {
603 -webkit-appearance: none;
604 -moz-appearance: none;
605 text-indent: 1px;
606 text-overflow: '';
607}