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

Update style.css

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