forked from opensource-society/notesvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
104 lines (91 loc) · 1.51 KB
/
about.css
File metadata and controls
104 lines (91 loc) · 1.51 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
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #f4f9f4;
color: #1c1c1c;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 1.5rem 1rem;
}
/* Header */
.hero-section {
background-color: #163d3b;
color: white;
padding: 2.5rem 1rem;
text-align: center;
}
.hero-section h1 {
font-size: 2.6rem;
margin: 0;
}
/* Intro */
.intro-box {
background-color: #dbe5dc;
border-radius: 10px;
margin-top: 1.5rem;
font-size: 1.1rem;
font-weight: 400;
text-align: justify;
}
/* Cards */
.two-cards,
.features {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
margin-top: 1rem;
justify-content: space-between;
}
.card,
.feature-box {
flex: 1;
background: white;
border-radius: 10px;
padding: 1.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
line-height: 1.6;
margin: 0;
}
.card h3,
.feature-box h3 {
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.card p,
.feature-box p {
color: #444;
}
/* GitHub CTA */
.cta {
text-align: center;
background: #dbe5dc;
border-radius: 12px;
padding: 2rem 1.5rem;
margin-top: 2rem;
}
.cta a {
display: inline-block;
margin-top: 1rem;
padding: 0.75rem 1.8rem;
background-color: #2f3e46;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: background 0.3s ease;
}
.cta a:hover {
background-color: #1d2a2e;
}
/* Footer */
.footer {
background: #2f3e46;
color: white;
text-align: center;
padding: 1rem;
margin-top: 3rem;
}