-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
213 lines (212 loc) · 6.13 KB
/
index.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
body {
font-family: 'Helvetica', Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.option:hover{
background-color: #3E8FA8;
}
.hero {
background-image: url('hero.png'); /* Christian theme image */
background-size: cover;
background-position: center;
text-align: center;
padding: 70px 20px;
color: white;
position: relative;
}
.hero-content {
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 36px; /* Slightly smaller */
margin-bottom: 10px;
}
.hero p {
font-size: 18px; /* Smaller size for subtitle */
margin-bottom: 30px;
}
.hero a {
color: white;
}
#successMsg {
color: green;
font-size: 28px;
font-weight: bold;
}
#errorMsg {
color: red;
font-size: 28px;
font-weight: bold;
}
.subscribe-box {
display: flex;
justify-content: center;
margin: 0 auto;
max-width: 600px;
flex-direction: column;
}
.subscribe-box textarea {
padding: 15px;
font-size: 16px;
width: 100%; /* Match width of email input */
height: 150px; /* Adjusted height to display full placeholder */
border: none;
border-radius: 8px;
margin-bottom: 10px;
font-style: italic;
color: #555;
white-space: pre-wrap;
text-align: left;
vertical-align: top;
resize: none; /* Disable resizing */
box-sizing: border-box; /* Ensure padding is included in the width */
}
.subscribe-box textarea::placeholder {
text-align: left; /* Placeholder starts from the top-left */
vertical-align: top;
}
.email-and-subscribe {
display: flex;
width: 100%; /* Ensure both email and subscribe button fit within the same container */
}
.subscribe-box input {
padding: 15px;
font-size: 18px;
width: calc(100% - 150px); /* Calculate width so it fits with the subscribe button */
border: none;
border-radius: 8px 0 0 8px;
}
.subscribe-box button {
padding: 15px 25px;
font-size: 18px;
width: 150px; /* Fixed width for the button */
background-color: #007BFF; /* Blue subscribe button */
color: white;
border: none;
cursor: pointer;
border-radius: 0 8px 8px 0;
transition: background-color 0.3s;
}
.subscribe-box button:hover {
background-color: #0056b3;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 60px 20px;
background-color: #f1f1f1;
}
.chat-section {
width: 45%;
background-color: #fff;
padding: 30px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
border-radius: 12px;
text-align: center;
}
.email-example-section {
width: 45%;
background-color: #fff;
padding: 30px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
border-radius: 12px;
}
.chat-section h2, .email-example-section h2 {
font-size: 28px;
margin-bottom: 20px;
color: #333;
}
.chat-options {
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 40px;
}
.chat-button {
width: 200px;
padding: 15px;
background-color: #007BFF;
color: white;
text-align: center;
border-radius: 8px;
cursor: pointer;
text-decoration: none;
font-size: 16px;
/* margin: 0 10px; */
margin: auto;
transition: background-color 0.3s;
display: flex;
align-items: center;
}
.chat-button img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.chat-button:hover {
background-color: #0056b3;
}
.qr-codes {
display: flex;
justify-content: space-evenly;
margin-top: 20px;
}
.qr-codes img {
width: 280px;
height: 280px;
}
.email-example-section p {
margin-bottom: 20px;
color: #666;
}
.email-example {
margin-top: 20px;
padding: 15px;
background-color: #f9f9f9;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s;
}
.email-example:hover {
background-color: #eee;
}
.email-title {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}
.email-content {
font-size: 16px;
line-height: 1.6;
color: #555;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
margin-top: 40px;
}
#profile-text {
white-space: nowrap;
}
@media (max-width: 768px) {
.container {
flex-direction: column; /* Stack boxes vertically on narrow screens */
}
.chat-section {
width: 90%;
margin-bottom: 20px;
}
.email-example-section {
width: 90%;
}
#profile-text {
white-space: normal;
}
}