main
css 37 lines 460 Bytes
Raw
1 body {
2 font-family: sans-serif;
3 font-size: 12px;
4 }
5
6 h1 {
7 margin: 0;
8 font-size: 20px;
9 }
10
11 h2 {
12 margin: 1rem 0 0;
13 }
14
15 iframe {
16 border: 1px solid #ddd;
17 border-radius: 0.5rem;
18 }
19
20 code {
21 white-space: nowrap;
22 }
23
24 .Feature {
25 margin: 1rem 0;
26 border-bottom: 1px solid #eee;
27 padding-bottom: 1rem;
28 }
29 .FeatureHeader {
30 font-size: 16px;
31 margin-bottom: 0.5rem;
32 }
33 .FeatureCode {
34 background-color: #eee;
35 padding: 0.25rem;
36 border-radius: 0.25rem;
37 }