UNPKG

1.45 kBSCSSView Raw
1---
2---
3
4body {
5 font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
6 font-size: 16px;
7
8 display: flex;
9 min-height: 100vh;
10 flex-direction: column;
11}
12
13.navbar {
14 margin-bottom: 0;
15
16 &.navbar-default {
17 color: black;
18 background-color: white;
19 border: none;
20 }
21
22 & a {
23 color: black;
24
25 &:hover {
26 color: inherit;
27 }
28 }
29
30 & .navbar-brand {
31 color: inherit;
32 text-transform: uppercase;
33 font-weight: 700;
34
35 &:hover { color: inherit; }
36
37 }
38
39}
40
41.jumbotron p { font-weight: 300 }
42
43.header {
44 background-color: #fdc61d;
45
46 h1 {
47 font-weight: 700;
48 text-shadow: 4px 4px 0 #dea802;
49 margin-bottom: .8em;
50 }
51}
52
53.content {
54 flex: 1;
55}
56
57.card {
58 color: inherit;
59 display: block;
60 border: 1px solid #ddd;
61 padding: 12px 24px;
62 border-radius: 4px;
63
64 margin-bottom: 1em;
65
66 &:hover {
67 color: inherit;
68 text-decoration: none;
69 }
70
71}
72
73.documentation-nav {
74 ol {
75 list-style: none;
76 counter-reset: item;
77 padding-left: 1em;
78 }
79
80 & > ol {
81 padding-left: 0;
82 }
83
84 li { line-height: 1.5; }
85 & > ol > li {
86 margin-bottom: 1em;
87 }
88
89 li:before {
90 content: counters(item, ".") " ";
91 counter-increment: item
92 }
93}
94
95.footer {
96 padding-top: 24px;
97 padding-bottom: 24px;
98 background-color: #f5f5f5;
99 margin: 3em 0 0;
100
101 p {
102 font-size: 1em;
103 font-weight: 400;
104
105 &:last-child {
106 margin-bottom: 0;
107 }
108 }
109}