-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
174 lines (153 loc) · 5.71 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mindwell</title>
<link rel="icon" href="assets/images/logo_002.png" type="image/png">
<style>
/* CSS Variables for easy color customization */
:root {
--primary-color: #FFFFFF; /* Primary color */
--button-height: 50px;
--button-width: 50px;
--max-content-width: 800px; /* Max width for content */
--min-content-width: 300px; /* Min width for content */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box; /* Ensures padding and border are included in element width/height */
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh; /* Full viewport height */
font-family: Arial, sans-serif;
background-color: #000000; /* Background color */
max-width: 100vw;
min-width: 300px;
}
.header, .footer {
width: 100%; /* Full width across the screen */
background-color: #000000;
}
.header-content, .footer-content {
max-width: var(--max-content-width); /* Max width for content */
min-width: var(--min-content-width); /* Min width for content */
margin: 0 auto; /* Center content */
padding-top: 20px;
padding-bottom: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header img {
max-width: 50px;
cursor: pointer; /* Make the logo clickable */
}
.header-content a {
text-decoration: none;
font-size: 1.5em;
color: var(--primary-color);
}
.container {
max-width: var(--max-content-width);
min-width: var(--min-content-width);
margin: 0 auto;
text-align: center;
padding: 20px;
}
img {
max-width: 150px;
margin-bottom: 0px;
}
p {
margin-bottom: 20px;
font-size: 1.2em;
}
a {
text-decoration: none; /* Keeps the link without underline */
color: var(--primary-color); /* Sets the text color to the primary color */
font-size: 1.1em; /* You can adjust the font size as needed */
margin: 10px; /* Optional: Adds some spacing around the link */
transition: color 0.3s ease; /* Smooth color change on hover */
}
a:hover {
text-decoration: underline; /* Adds underline on hover */
/* color: #333333; /* chnge color on hover */
}
footer {
background-color: #000000;
width: 100%;
}
footer a {
margin: 0 15px;
text-decoration: none;
color: #FFFFFF;
font-size: 1em;
}
footer a:hover {
text-decoration: underline;
}
/* Ensure the footer is always at the bottom of the screen */
.footer-content {
justify-content: center;
}
.logo-text-link {
display: flex; /* Align items horizontally */
align-items: center; /* Vertically center the text and image */
text-decoration: none; /* Remove underline from the text */
}
.logo {
max-width: 50px; /* Adjust the size of the logo */
margin-right: 10px; /* Space between the logo and the text */
}
.logo-text {
font-size: 1em; /* Adjust font size as needed */
color: #FFFFFF; /* Text color */
}
.store-button {
display: inline-block;
margin-right: 20px; /* Adjust the space between the buttons */
text-decoration: none; /* Remove underline */
padding: 10px 20px; /* Optional: Adds some padding to make the links look like buttons */
background-color: #FFFFFF; /* Optional: Add a background color */
color: #000000; /* Optional: White text */
border-radius: 5px; /* Optional: Rounds the corners */
width: 250px;
}
.store-button:last-child {
margin-right: 0; /* Removes the margin after the last button */
}
</style>
</head>
<body>
<!-- Header with logo linking to home -->
<header class="header">
<div class="header-content">
<a href="https://www.mindwellworld.com" class="logo-text-link">
<img src="assets/images/logo_002.png" alt="Mindwell Logo" class="logo">
<span class="logo-text">Mindwell</span>
</a>
</div>
</header>
<!-- Main content -->
<div class="container">
<!-- <img src="assets/images/logo_002.png" alt="Mindwell"> -->
<h3 style="color: #000000; margin-bottom: 20px">Start your mental health journey today with the Mindwell mobile app. Download from one of the places below.</h3>
<!-- Buttons for App Store and Google Play -->
<a href="https://apps.apple.com">Apple Store</a>
<a href="https://play.google.com">Google Play</a>
</div>
<!-- Footer with important links -->
<footer class="footer">
<div class="footer-content">
<a href="https://www.mindwellworld.com/mission.html">Mission</a>
<a href="https://www.mindwellworld.com/privacy.html">Privacy</a>
<a href="mailto:[email protected]">Contact</a>
</div>
</footer>
</body>
</html>