-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.css
More file actions
107 lines (90 loc) · 1.4 KB
/
docs.css
File metadata and controls
107 lines (90 loc) · 1.4 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
102
103
104
105
106
107
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Arial", sans-serif;
background-color: #121212; /* AMOLED black */
color: #f0f0f0; /* Light text for contrast */
line-height: 1.6;
}
html {
scroll-behavior: smooth;
}
/* Header */
header {
background-color: #1e1e1e;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #333;
}
.logo img {
height: 50px;
}
nav ul {
list-style: none;
display: flex;
gap: 1.5rem;
}
nav a {
text-decoration: none;
color: #76c7c0; /* Eco-friendly green */
font-weight: bold;
transition: color 0.3s;
}
nav a:hover {
color: #58a8a1;
}
/* Sections */
.section {
padding: 2rem;
margin: 2rem auto;
max-width: 800px;
border: 1px solid #333;
border-radius: 10px;
background-color: #1e1e1e;
}
.section h1,
.section h2 {
color: #76c7c0;
margin-bottom: 1rem;
}
.section p,
.section ul,
.section ol {
margin-bottom: 1rem;
}
/* Lists */
ul,
ol {
padding-left: 1.5rem;
}
ul li {
margin-bottom: 0.5rem;
}
/* FAQs */
.faq-item {
margin-bottom: 1.5rem;
}
.faq-item h3 {
color: #76c7c0;
}
/* Footer */
footer {
text-align: center;
padding: 1rem 0;
background-color: #1e1e1e;
color: #666;
border-top: 1px solid #333;
}
footer a {
color: #76c7c0;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}