@@ -16,28 +16,39 @@ header {
1616 display : flex;
1717 align-items : center;
1818 justify-content : space-between;
19- padding : 10 px ;
19+ padding : 3 px 8 px ;
2020 background : # ffffff ;
2121 border-bottom : 1px solid # e0e0e0 ;
2222}
2323
2424header button {
25- padding : 6 px 12 px ;
25+ padding : 2 px 6 px ;
2626 font-size : 14px ;
27- border : 1px solid # ccc ;
28- background : # fff ;
29- border-radius : 6 px ;
27+ border : 1px solid transparent ;
28+ background : transparent ;
29+ border-radius : 5 px ;
3030 cursor : pointer;
31+ line-height : 1.4 ;
32+ transition : background 0.15s ;
33+ }
34+
35+ header button : hover {
36+ background : rgba (0 , 0 , 0 , 0.07 );
37+ }
38+
39+ header button .pinned {
40+ background : rgba (0 , 0 , 0 , 0.1 );
41+ border-color : rgba (0 , 0 , 0 , 0.15 );
3142}
3243
3344header button : disabled {
34- opacity : 0.6 ;
45+ opacity : 0.4 ;
3546 cursor : not-allowed;
3647}
3748
3849main {
3950 flex : 1 ;
40- padding : 10 px ;
51+ padding : 8 px ;
4152}
4253
4354textarea {
@@ -50,9 +61,41 @@ textarea {
5061 border : 1px solid # d0d0d0 ;
5162 border-radius : 8px ;
5263 background : # ffffff ;
64+ color : # 222 ;
5365}
5466
5567# status {
56- font-size : 12px ;
57- color : # 555 ;
68+ font-size : 11px ;
69+ color : # 666 ;
70+ }
71+
72+ @media (prefers-color-scheme : dark) {
73+ body {
74+ background : # 1e1e1e ;
75+ color : # e0e0e0 ;
76+ }
77+
78+ header {
79+ background : # 2a2a2a ;
80+ border-bottom-color : # 3a3a3a ;
81+ }
82+
83+ header button : hover {
84+ background : rgba (255 , 255 , 255 , 0.1 );
85+ }
86+
87+ header button .pinned {
88+ background : rgba (255 , 255 , 255 , 0.15 );
89+ border-color : rgba (255 , 255 , 255 , 0.2 );
90+ }
91+
92+ textarea {
93+ background : # 2a2a2a ;
94+ color : # e0e0e0 ;
95+ border-color : # 3a3a3a ;
96+ }
97+
98+ # status {
99+ color : # 888 ;
100+ }
58101}
0 commit comments