diff options
Diffstat (limited to 'docs/css/main.css')
-rw-r--r-- | docs/css/main.css | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/docs/css/main.css b/docs/css/main.css new file mode 100644 index 00000000..ad4bcd80 --- /dev/null +++ b/docs/css/main.css | |||
@@ -0,0 +1,99 @@ | |||
1 | body { | ||
2 | font-size: 19px; | ||
3 | } | ||
4 | |||
5 | main { | ||
6 | margin-top: 90px; | ||
7 | } | ||
8 | |||
9 | section { | ||
10 | margin-bottom: 50px; | ||
11 | } | ||
12 | |||
13 | h1, h2, h3, h4 { | ||
14 | color: #df691a; | ||
15 | } | ||
16 | h3 { | ||
17 | font-size: 23px; | ||
18 | } | ||
19 | |||
20 | li { | ||
21 | margin-bottom: 3px; | ||
22 | } | ||
23 | |||
24 | img { | ||
25 | max-width: 100%; | ||
26 | } | ||
27 | |||
28 | header.navbar { | ||
29 | opacity: 0.9; | ||
30 | } | ||
31 | .navbar .navbar-brand { | ||
32 | font-size: 28px; | ||
33 | height: auto; | ||
34 | line-height: 50px; | ||
35 | margin-left: 20px; | ||
36 | color: #df691a; | ||
37 | } | ||
38 | .navbar a.navbar-brand:hover { | ||
39 | color: #df691a; | ||
40 | } | ||
41 | .navbar .navbar-brand small { | ||
42 | font-size: 18px; | ||
43 | font-weight: 300; | ||
44 | margin-left: 10px; | ||
45 | color: white; | ||
46 | } | ||
47 | |||
48 | @media (min-width: 768px) { | ||
49 | #sidebar { | ||
50 | /*position:fixed;*/ | ||
51 | } | ||
52 | } | ||
53 | @media (max-width: 960px) { | ||
54 | body { | ||
55 | font-size: 17px; | ||
56 | } | ||
57 | pre { | ||
58 | font-size: 12px; | ||
59 | } | ||
60 | } | ||
61 | |||
62 | #sidebar { | ||
63 | font-size: 16px; | ||
64 | } | ||
65 | |||
66 | .page-header { | ||
67 | margin-top: 0; | ||
68 | } | ||
69 | |||
70 | #sidebar .github-star { | ||
71 | margin-top: 20px; | ||
72 | margin-left: 50px; | ||
73 | } | ||
74 | |||
75 | #sidebar .text-muted { | ||
76 | color: #859AAF; | ||
77 | } | ||
78 | |||
79 | pre { | ||
80 | padding: 0; | ||
81 | border-color: #3D5166; | ||
82 | background-color: #1D2B3A; | ||
83 | border-radius: 4px; | ||
84 | margin: 15px; | ||
85 | } | ||
86 | pre code { | ||
87 | border: none; | ||
88 | background-color: #1D2B3A; | ||
89 | } | ||
90 | |||
91 | code { | ||
92 | font-size: 85%; | ||
93 | padding: 4px 4px 1px; | ||
94 | margin: 0 4px; | ||
95 | border-radius: 3px; | ||
96 | color: #c5c8c6; | ||
97 | border: solid 1px #3D5166; | ||
98 | background-color: #1D2B3A; | ||
99 | } | ||