source: code/trunk/static/docs.css@ 64

Last change on this file since 64 was 64, checked in by yakumo.izuru, 17 months ago

Does verbose mode even work, anyways, releasing V1 now

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

File size: 2.1 KB
Line 
1/*
2 * Taken from vnpower
3 */
4
5* {
6 box-sizing: border-box; }
7
8body {
9 top: 0;
10 margin: 0;
11 background-color: #1d1f21;
12 color: white;
13 font-family: "Open Sans", "Roboto", "Noto Sans", "Noto Sans CJK JP", sans-serif;
14 line-height: 1.618;
15}
16
17h2.get {
18 color: orange;
19}
20
21h2.post {
22 color: green;
23}
24
25@media (max-width: 684px) {
26 body {
27 font-size: 1rem; } }
28
29@media (max-width: 382px) {
30 body {
31 font-size: 1rem; } }
32
33a {
34 color: #81a2be;
35 text-decoration-color: #81a2be; }
36
37#header {
38 width: 100%;
39 min-width: 320px;
40 background-color: #282a2e; }
41
42#header img {
43 width: 280px; }
44
45#header-content {
46 margin: 0 auto;
47 width: min-content; }
48
49#nav {
50 display: flex;
51 justify-content: center;
52 background-color: #373b41; }
53
54#footer {
55 margin-top: 0.5rem;
56 text-align: center; }
57
58#body {
59 min-height: 75vh;
60 max-width: 800px;
61 margin: 1rem auto;
62 padding: 0 0.6rem; }
63 #body h1,
64 #body h2,
65 #body h3,
66 #body h4,
67 #body h5,
68 #body h6 {
69 line-height: 1.1;
70 font-family: sans-serif;
71 font-weight: 700;
72 margin-top: 1rem;
73 margin-bottom: 1rem;
74 overflow-wrap: break-word;
75 word-wrap: break-word;
76 -ms-word-break: break-all;
77 word-break: break-word; }
78 #body h1 {
79 border-bottom: 1px solid #b5bd68;
80 display: block; }
81 #body p {
82 margin-top: 0px;
83 margin-bottom: 0.5rem; }
84 #body li > p {
85 padding: 0;
86 margin: 0; }
87 #body small,
88 #body sub,
89 #body sup {
90 font-size: 75%; }
91 #body img,
92 #body video {
93 height: auto;
94 max-width: 100%;
95 margin-top: 0.5rem;
96 margin-bottom: 0.5rem;
97 box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 4px 0px rgba(0, 0, 0, 0.12), 0px 8px 8px 0px rgba(0, 0, 0, 0.12), 0px 16px 16px 0px rgba(0, 0, 0, 0.12); }
98 #body pre {
99 background-color: #373b41;
100 display: block;
101 padding: 1em;
102 overflow-x: auto;
103 margin-top: 0px;
104 margin-bottom: 0.5rem; }
105 #body code, #body kbd, #body samp {
106 padding: 0 0.5em;
107 background-color: #373b41;
108 white-space: pre-wrap; }
109 #body pre > code {
110 padding: 0;
111 background-color: transparent;
112 white-space: pre;
113 font-size: 1em; }
114
Note: See TracBrowser for help on using the repository browser.