Skip to content

Commit ffe7916

Browse files
committed
feat: dark mode
1 parent 494633a commit ffe7916

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

server/static/style.css

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
margin: 0;
33
}
44

5-
html,
6-
body {
5+
html {
6+
background-color: #22252b;
77
height: 100%;
88
}
99

1010
body {
11+
background-color: #111217;
1112
display: flex;
1213
flex-direction: column;
14+
height: 100%;
1315
}
1416

1517
.right {
@@ -23,12 +25,12 @@ body {
2325
}
2426

2527
header {
26-
border-bottom: 1px solid #fff;
28+
border-bottom: 1px solid #383a41;
2729
height: 60px;
2830
min-height: 60px;
2931
padding: 0 10px;
3032

31-
background-color: #16191f;
33+
background-color: #22252b;
3234
color: #eee;
3335
font-family: Helvetica Neue, Roboto, Arial, sans-serif;
3436
font-size: 24px;
@@ -59,6 +61,7 @@ header a {
5961
}
6062

6163
.content p {
64+
color: #d5dbdb;
6265
font-family: Helvetica Neue, Roboto, Arial, sans-serif;
6366
font-size: 20px;
6467
line-height: 1.8rem;
@@ -67,13 +70,13 @@ header a {
6770
}
6871

6972
footer {
70-
border-top: 1px solid #fff;
73+
border-top: 1px solid #383a41;
7174
flex-shrink: 0;
7275
height: 40px;
7376
overflow-y: hidden;
7477
padding: 0 10px;
7578

76-
background-color: #16191f;
79+
background-color: #22252b;
7780
color: #d5dbdb;
7881
font-family: Helvetica Neue, Roboto, Arial, sans-serif;
7982
font-size: 12px;

0 commit comments

Comments
 (0)