Antoni09 commited on
Commit
cb44d3c
·
verified ·
1 Parent(s): 85de0ed

Delete static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +0 -79
static/style.css DELETED
@@ -1,79 +0,0 @@
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
- p {
11
- color: rgb(65, 69, 78);
12
- font-size: 15px;
13
- margin-bottom: 10px;
14
- margin-top: 5px;
15
- line-height: 1.6;
16
- }
17
- /* List styles */
18
- ul, ol {
19
- margin: 1rem 0;
20
- padding-left: 2rem;
21
- color: rgb(65, 69, 78);
22
- }
23
- ul {
24
- list-style-type: none;
25
- list-style-position: outside;
26
- padding-left: 1.5rem;
27
- }
28
- ul li::before {
29
- content: "—";
30
- margin-right: 0.5rem;
31
- color: rgb(67, 71, 80);
32
- }
33
- ol {
34
- list-style-type: none;
35
- list-style-position: outside;
36
- padding-left: 1.5rem;
37
- counter-reset: list-counter;
38
- }
39
- ol li::before {
40
- content: counter(list-counter) ".";
41
- counter-increment: list-counter;
42
- margin-right: 0.5rem;
43
- color: rgb(78, 83, 93);
44
- }
45
- li {
46
- margin-bottom: 0.5rem;
47
- line-height: 1.6;
48
- font-size: 0.9rem;
49
- padding-left: 0.5rem;
50
- }
51
- /* Nested lists */
52
- ul ul, ol ol, ul ol, ol ul {
53
- margin-top: 0.5rem;
54
- margin-bottom: 0.5rem;
55
- }
56
-
57
- /* Definition lists */
58
- dl {
59
- margin: 1rem 0;
60
- }
61
-
62
- dt {
63
- font-weight: 600;
64
- margin-top: 0.5rem;
65
- }
66
-
67
- dd {
68
- margin-left: 1rem;
69
- margin-bottom: 0.5rem;
70
- }
71
- .card {
72
- width: 100%;
73
- padding: 16px;
74
- border: 1px solid lightgray;
75
- border-radius: 16px;
76
- }
77
- .card p:last-child {
78
- margin-bottom: 0;
79
- }