22: root {
33 /* Common variables */
44 --border : 1px solid # 454545 ;
5+ --menu-border : 0.5px solid # 454545 ;
56
67 /* Light mode variables */
78 --background-color-light : # f0f4f8 ;
89 --content-bg-light : # f9f9f9 ;
9- --even-row-color-light : # CCC ;
10- --odd-row-color-light : # DDD ;
10+ --even-row-color-light : # 8C867D ;
11+ --odd-row-color-light : # CCB287 ;
1112 --form-bg-light : # ddd ;
1213 --header-color-light : # efefef ;
1314 --primary-color-light : # 1e6091 ;
1415 --text-color-light : # 333 ;
1516 --text-color-secondary-light : # 555 ;
1617 --threadpost-bg-light : # fff ;
18+ --menu-item-bg-light : # C7CACD ;
19+ --button-text-color-light : # fff ;
20+
1721
1822 /* Dark mode variables */
1923 --background-color-dark : # 1a2634 ;
2226 --odd-row-color-dark : # 333 ;
2327 --form-bg-dark : # 333 ;
2428 --header-color-dark : # 2c2c2c ;
25- --primary-color-dark : # 64b5f6 ;
29+ --primary-color-dark : # b5deff ;
2630 --text-color-dark : # e0e0e0 ;
2731 --text-color-secondary-dark : # b0b0b0 ;
2832 --threadpost-bg-dark : # 333 ;
33+ --menu-item-bg-dark : # 6B84A2 ;
34+ --button-text-color-dark : # 222 ;
2935
3036 /* Default to light mode */
3137 --background-color : var (--background-color-light );
3844 --text-color : var (--text-color-light );
3945 --text-color-secondary : var (--text-color-secondary-light );
4046 --threadpost-bg : var (--threadpost-bg-light );
47+ --menu-item-bg : var (--menu-item-bg-light );
48+ --button-text-color : var (--button-text-color-light );
4149}
4250
4351/* Base styles */
@@ -61,17 +69,6 @@ a:hover {
6169
6270/* Table styles */
6371table {
64- border : var (--border );
65- border-collapse : separate;
66- border-radius : 0 0.625rem 0.625rem 0.625rem ;
67- border-spacing : 0 ;
68- margin : 0 auto;
69- overflow : hidden;
70- table-layout : fixed;
71- width : 100% ;
72- }
73-
74- .content-container table {
7572 border : var (--border );
7673 border-collapse : separate;
7774 border-radius : 0.625rem ;
@@ -159,7 +156,7 @@ tbody>tr:nth-child(odd) {
159156 background-color : var (--primary-color );
160157 border : none;
161158 border-radius : 0.625rem ;
162- color : white ;
159+ color : var ( --button-text-color ) ;
163160 cursor : pointer;
164161 font-size : 1em ;
165162 padding : 0.625rem ;
@@ -168,7 +165,7 @@ tbody>tr:nth-child(odd) {
168165
169166.edit-profile button : hover ,
170167.form-group button : hover {
171- background-color : ( var (--primary-color ) + 20 % );
168+ background-color : var (--primary-color );
172169}
173170
174171.edit-profile input ,
@@ -200,6 +197,11 @@ tbody>tr:nth-child(odd) {
200197 margin-bottom : 0.3125rem ;
201198}
202199
200+ .menu {
201+ display : flex;
202+ flex-direction : row;
203+ }
204+
203205.profile-column {
204206 background-color : var (--primary-color );
205207 box-sizing : border-box;
@@ -296,13 +298,12 @@ tbody>tr:nth-child(odd) {
296298
297299.subject {
298300 display : inline-block;
299-
300301}
301302
302303.subject p {
303- font-size : 1.25 rem ;
304+ font-size : 1.20 rem ;
304305 font-weight : 600 ;
305- margin-top : 0.4 rem ;
306+ margin-top : 0 rem ;
306307 margin-bottom : 0.4rem ;
307308 margin-left : 0rem ;
308309 margin-right : 0rem ;
@@ -315,17 +316,26 @@ tbody>tr:nth-child(odd) {
315316 padding-bottom : 10px ;
316317}
317318
319+ hr {
320+ border : var (--menu-border );
321+ margin-top : 0 ;
322+ margin-bottom : 1.2rem ;
323+ }
324+
318325.sub-header {
319326 display : block;
320327 width : fit-content;
321- border-top-right-radius : 0.625rem ;
322- border-top-left-radius : 0.625rem ;
323- border-bottom-left-radius : 0 ;
324- border-bottom-right-radius : 0 ;
328+ border-radius : 0.625rem 0.625rem 0 0 ;
325329 border : var (--border );
326330 border-bottom : 0px ;
327- margin-bottom : -1 px ;
331+ margin-right : 0.625 rem ;
328332 padding : 5px 10px 10px 10px ;
333+ background-color : var (--menu-item-bg )
334+ }
335+
336+ .sub-header .admin {
337+ margin-left : 1.5rem ;
338+ border-radius : 0.625rem 0.625rem 0 0 ;
329339}
330340
331341.board-title {
@@ -412,10 +422,8 @@ svg a:active {
412422 --text-color : var (--text-color-dark );
413423 --text-color-secondary : var (--text-color-secondary-dark );
414424 --threadpost-bg : var (--threadpost-bg-dark );
415- }
416-
417- .form-group button : hover {
418- background-color : # ffb8d9 ;
425+ --menu-item-bg : var (--menu-item-bg-dark );
426+ --button-text-color : var (--button-text-color-dark );
419427 }
420428}
421429
0 commit comments