Neural-Hacker commited on
Commit
64e53c0
·
verified ·
1 Parent(s): 2cfe8bf

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +48 -16
style.css CHANGED
@@ -1,28 +1,60 @@
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
  body {
2
+ padding: 2rem;
3
+ font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
4
+ background-color: #f0f4f8;
5
+ color: #1f2937;
6
+ }
7
+
8
+ .card {
9
+ max-width: 720px;
10
+ margin: 0 auto;
11
+ padding: 24px;
12
+ background-color: #ffffff;
13
+ border: 1px solid #d1d5db;
14
+ border-radius: 12px;
15
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
16
  }
17
 
18
  h1 {
19
+ font-size: 26px;
20
+ margin-bottom: 8px;
21
+ color: #111827;
22
+ }
23
+
24
+ .tagline {
25
+ font-size: 16px;
26
+ font-weight: 500;
27
+ color: #374151;
28
+ margin-bottom: 24px;
29
+ }
30
+
31
+ h2 {
32
+ font-size: 18px;
33
+ margin-top: 20px;
34
+ margin-bottom: 8px;
35
+ color: #1f2937;
36
  }
37
 
38
  p {
39
+ font-size: 15px;
40
+ line-height: 1.6;
41
+ margin-bottom: 16px;
 
42
  }
43
 
44
+ ul {
45
+ padding-left: 20px;
46
+ margin-bottom: 16px;
 
 
 
47
  }
48
 
49
+ li {
50
+ font-size: 15px;
51
+ margin-bottom: 8px;
52
  }
53
+
54
+ .footer {
55
+ font-weight: bold;
56
+ font-size: 15px;
57
+ margin-top: 32px;
58
+ text-align: center;
59
+ color: #111827;
60
+ }