-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (85 loc) · 1.43 KB
/
styles.css
File metadata and controls
101 lines (85 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #ffc0cb;
color: #333333;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 60px 20px;
}
header {
text-align: center;
margin-bottom: 60px;
}
header h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 10px;
color: #333333;
}
header p {
font-size: 18px;
color: #666666;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 60px;
}
.card {
padding: 20px;
border: 1px solid #e0e0e0;
}
.card h2 {
font-size: 20px;
margin-bottom: 10px;
color: #333333;
}
.card p {
color: #666666;
}
.cta {
text-align: center;
}
button {
background-color: #000;
color: #fff;
border: none;
padding: 12px 30px;
font-size: 16px;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #333;
}
.debug-info {
margin-top: 40px;
padding: 20px;
background-color: #f8f8f8;
border: 1px solid #e0e0e0;
border-radius: 6px;
}
.debug-info h2 {
font-size: 24px;
color: #333333;
margin-bottom: 15px;
}
.debug-content p {
font-size: 14px;
color: #666666;
margin-bottom: 8px;
font-family: monospace;
}
.debug-content span {
color: #333333;
font-weight: normal;
}