source: code/trunk/docs/style.css@ 68

Last change on this file since 68 was 67, checked in by yakumo.izuru, 16 months ago

Fix bugs, many other changes

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 291 bytes
Line 
1body {
2 background-color: #f8cfd2;
3 color: rgb(206, 147, 191);
4}
5
6a, a:visited {
7 color: rgb(206, 147, 191);
8}
9
10@media screen and (prefers-color-scheme: dark) {
11 body {
12 background-color: #700000;
13 color: #ffffff;
14 }
15 a, a:visited {
16 color: #18c018;
17 }
18}
19
20table {
21 border-color: white;
22}
Note: See TracBrowser for help on using the repository browser.