-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (91 loc) · 1.82 KB
/
styles.css
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
/* styles.css */
:root {
--primary-green: #40a578;
--black: #000000;
--white: #ffffff;
--gray-bg: #f9f9f9;
--font-family: 'Inter', sans-serif;
--link-hover-bg: #eaf5ee;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--gray-bg);
font-family: var(--font-family);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: var(--black);
}
.container {
background-color: var(--white);
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
padding: 3rem;
width: 95%;
max-width: 600px;
text-align: center;
}
.header .brand {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-green);
letter-spacing: -0.5px;
}
.header .tagline {
font-size: 1.25rem;
color: var(--black);
font-weight: 400;
margin-top: 0.5rem;
}
.summary {
margin: 1.5rem 0;
font-size: 1rem;
line-height: 1.6;
color: var(--black);
text-align: left; /* Align the text to the left */
}
.content {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}
.manifesto .manifesto-link {
font-size: 1rem;
font-weight: 600;
color: var(--primary-green);
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border: 2px solid var(--primary-green);
border-radius: 8px;
transition: all 0.3s ease;
}
.manifesto .manifesto-link:hover {
background-color: var(--link-hover-bg);
}
.email .email-link {
font-size: 1rem;
color: var(--black);
text-decoration: none;
font-weight: 400;
border-bottom: 1px dashed var(--black);
transition: all 0.2s ease;
}
.email .email-link:hover {
color: var(--primary-green);
border-bottom-color: var(--primary-green);
}
footer {
margin-top: 2rem;
font-size: 0.875rem;
color: #666;
}