ceckenrode commited on
Commit
a78f996
·
1 Parent(s): 3f141fb

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +61 -16
style.css CHANGED
@@ -1,28 +1,73 @@
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
9
  }
10
 
 
11
  p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Apply a background color to the body */
2
  body {
3
+ background-color: #f2f2f2;
 
4
  }
5
 
6
+ /* Center the main content */
7
+ main {
8
+ max-width: 800px;
9
+ margin: 0 auto;
10
+ padding: 20px;
11
+ }
12
+
13
+ /* Add a border and some padding to the iframes */
14
+ iframe {
15
+ border: 1px solid #ccc;
16
+ padding: 10px;
17
+ margin-bottom: 20px;
18
+ }
19
+
20
+ /* Style the mermaid diagrams */
21
+ .mermaid {
22
+ background-color: white;
23
+ padding: 20px;
24
+ margin-bottom: 20px;
25
+ border-radius: 5px;
26
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
27
+ }
28
+
29
+ /* Style the card */
30
+ .card {
31
+ background-color: white;
32
+ padding: 20px;
33
+ margin-bottom: 20px;
34
+ border-radius: 5px;
35
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
36
+ }
37
+
38
+ /* Style the heading */
39
  h1 {
40
+ font-size: 32px;
41
+ font-weight: bold;
42
+ margin-top: 0;
43
+ margin-bottom: 20px;
44
  }
45
 
46
+ /* Style the paragraphs */
47
  p {
48
+ font-size: 16px;
49
+ line-height: 1.5;
50
+ margin-bottom: 20px;
 
51
  }
52
 
53
+ /* Style the link */
54
+ a {
55
+ color: #0077cc;
56
+ text-decoration: none;
 
 
57
  }
58
 
59
+ a:hover {
60
+ text-decoration: underline;
61
  }
62
+
63
+ /* Style the code blocks */
64
+ pre {
65
+ background-color: #f5f5f5;
66
+ padding: 10px;
67
+ overflow: auto;
68
+ }
69
+
70
+ code {
71
+ font-family: "Courier New", Courier, monospace;
72
+ font-size: 14px;
73
+ }