KaybaAI commited on
Commit
5e6b3fe
·
verified ·
1 Parent(s): bd0c897

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +91 -16
style.css CHANGED
@@ -1,28 +1,103 @@
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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
4
+ line-height: 1.6;
5
+ color: #333;
6
+ background: #f5f5f5;
7
+ }
8
+
9
+ .card {
10
+ max-width: 900px;
11
+ margin: 0 auto;
12
+ background: white;
13
+ border-radius: 8px;
14
+ padding: 3rem;
15
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
16
  }
17
 
18
  h1 {
19
+ font-size: 2rem;
20
+ font-weight: 600;
21
+ line-height: 1.3;
22
+ margin-bottom: 1.5rem;
23
+ color: #1a1a1a;
24
  }
25
 
26
+ .badge {
27
+ display: inline-block;
28
+ background: #ff8c00;
29
+ color: white;
30
+ padding: 0.5rem 1rem;
31
+ border-radius: 20px;
32
+ font-size: 0.9rem;
33
+ font-weight: 500;
34
+ margin-bottom: 1.5rem;
35
  }
36
 
37
+ .intro {
38
+ font-size: 1.1rem;
39
+ margin-bottom: 2rem;
40
+ color: #444;
41
+ }
42
+
43
+ .section-title {
44
+ font-size: 1.05rem;
45
+ margin-bottom: 1rem;
46
+ color: #333;
47
+ }
48
+
49
+ .features {
50
+ list-style: disc;
51
+ padding-left: 2rem;
52
+ margin-bottom: 2rem;
53
+ }
54
+
55
+ .features li {
56
+ margin-bottom: 0.75rem;
57
+ font-size: 1rem;
58
+ color: #444;
59
+ }
60
+
61
+ .integration {
62
+ font-size: 1rem;
63
+ margin-bottom: 2rem;
64
+ color: #444;
65
+ }
66
+
67
+ .links {
68
+ margin-bottom: 2rem;
69
+ font-size: 1rem;
70
+ }
71
+
72
+ .links p {
73
+ margin-bottom: 0.5rem;
74
+ }
75
+
76
+ .links a {
77
+ color: #6366f1;
78
+ text-decoration: none;
79
+ }
80
+
81
+ .links a:hover {
82
+ text-decoration: underline;
83
+ }
84
+
85
+ .feedback {
86
+ font-size: 1rem;
87
+ color: #333;
88
+ margin-top: 2rem;
89
  }
90
 
91
+ @media (max-width: 768px) {
92
+ body {
93
+ padding: 1rem;
94
+ }
95
+
96
+ .card {
97
+ padding: 2rem 1.5rem;
98
+ }
99
+
100
+ h1 {
101
+ font-size: 1.5rem;
102
+ }
103
  }