-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
193 lines (163 loc) · 4.82 KB
/
Copy pathstyles.css
File metadata and controls
193 lines (163 loc) · 4.82 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
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
.container {
text-align: center; /* Centers the link horizontally */
}
.centered-link {
display: inline-block; /* Ensures the link respects text-align */
padding: 10px 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
}
/* Button-style links */
.button {
width: 50%;
display: inline-block;
padding: 10px 20px;
background-color: #854836be; /* background */
color: white; /* White text */
text-decoration: none;
border-radius: 5px; /* Rounded corners */
font-size: 20px;
transition: background-color 0.3s ease; /* Smooth hover effect */
}
.button:hover {
background-color: #FFB22C; /* Darker green on hover */
}
h1 {
font-size: 46px; /* Large font size */
font-family: 'Arial', sans-serif; /* Font family */
color: #EBE8DB; /* Text color */
font-weight: bold; /* Bold text */
text-align: center; /* Center align */
margin-bottom: 20px; /* Add spacing below */
}
/* Container for share buttons */
.share-buttons {
display: flex;
gap: 10px; /* Space between buttons */
margin-top: 20px;
}
/* Container for share buttons */
.share-buttons {
display: flex;
gap: 10px; /* Space between buttons */
justify-content: center; /* Center buttons horizontally */
position: fixed; /* Fix the container to the bottom */
bottom: 20px; /* Distance from the bottom */
left: 50%; /* Center horizontally */
transform: translateX(-50%); /* Adjust for exact center */
background-color: rgba(255, 255, 255, 0.39); /* Semi-transparent background */
padding: 10px 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
/* General button styling */
.share-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
border-radius: 5px;
color: rgb(255, 255, 255);
text-decoration: none;
font-family: Arial, sans-serif;
font-size: 14px;
transition: background-color 0.3s ease;
}
/* Facebook button */
.share-button.facebook {
background-color: #1877F2; /* Facebook blue */
}
.share-button.facebook:hover {
background-color: #166FE5;
}
/* Twitter button */
.share-button.twitter {
background-color: #1DA1F2; /* Twitter blue */
}
.share-button.twitter:hover {
background-color: #1991DB;
}
/* WhatsApp button */
.share-button.whatsapp {
background-color: #25d365; /* WhatsApp green */
}
.share-button.whatsapp:hover {
background-color: #128C7E;
}
/* SMS button */
.share-button.sms {
background-color: #34B7F1; /* Light blue for SMS */
}
.share-button.sms:hover {
background-color: #2AA7E1;
}
/* General body styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
/* Header container */
header {
background-color: #DCD7C9; /* Blue background */
padding: 15px 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
/* Navigation styling */
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
/* Logo styling */
.logo {
color: #2C3930;
font-size: 24px;
font-weight: bold;
text-decoration: none;
}
/* Navigation links */
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px; /* Space between links */
}
.nav-links li {
display: inline-block;
}
.nav-links a {
color: #3F4F44;
text-decoration: none;
font-size: 16px;
padding: 8px 12px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.nav-links a:hover {
background-color: rgba(255, 255, 255, 0.1); /* Light hover effect */
}
/* Active link styling */
.nav-links a.active {
background-color: rgba(255, 255, 255, 0.2); /* Slightly darker for active link */
}
/* Responsive design for smaller screens */
@media (max-width: 768px) {
nav {
flex-direction: column;
align-items: flex-start;
}
.nav-links {
margin-top: 10px;
}
.nav-links a {
padding: 6px 10px;
}
}