-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.css
More file actions
157 lines (136 loc) · 3.34 KB
/
Copy pathpricing.css
File metadata and controls
157 lines (136 loc) · 3.34 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
/* General Styles */
body {
font-family: "merriweather";
background-color: #f4f4f9;
color: #333;
text-align: center; /* Center text for a more professional look */
}
header {
background-color: #2f3640;
color: white;
}
.header1 {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
background-color: #59bc69;
height: 50px;
}
.menu {
display: flex;
align-items: center;
gap: 10px;
}
.menu i {
font-size: 1.2rem; /* Set the size of the menu icon */
}
.menu select {
padding: 5px;
background-color: white;
color: #59bc69;
border-radius: 20px;
border: 1px solid #ddd;
font-size: 1rem;
}
/* Header Buttons */
.header1-buttons {
display: flex;
gap: 15px;
align-items: center; /* Vertically center the buttons and icons */
}
.header1-buttons button {
background-color: #333;
color: white;
border: none;
padding: 8px 15px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 8px; /* Space between icon and text */
transition: background-color 0.3s ease;
font-size: 0.9rem; /* Reduced font size for better alignment */
}
.header1-buttons button i {
font-size: 1.2rem; /* Icon size */
}
.header1-buttons button:hover {
background-color: #1a1a1a;
}
#custcare, #reg {
display: flex;
align-items: center;
gap: 10px;
}
.header2 {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
background: linear-gradient(90deg, rgba(89,188,105,1) 0%, rgba(18,119,64,1) 100%);
height: 120px; /* Slightly increased the height */
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.logo img {
width: 100px; /* Increased the logo size */
height: 100px; /* Adjusted logo height */
margin-right: 30px;
}
.project-name {
font-size: 3.5rem;
color: white;
text-transform: uppercase;
letter-spacing: 3px;
}
.visit-charity-btn {
background-color: #ffc107;
color: #333;
padding: 12px 20px;
border-radius: 30px;
font-size: 1rem;
border: 2px solid gold;
box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
transition: all 0.3s ease;
}
.visit-charity-btn:hover {
background-color: gold;
color: white;
}
/* Plans Section Styles */
h1 {
margin: 30px 0;
}
.plans-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap; /* Wraps plans on smaller screens */
padding: 20px;
}
.plan {
font-size:medium;
text-align: left;
background-color: white;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
padding: 30px; /* Increased padding for a taller look */
margin: 10px;
width: 300px; /* Fixed width for consistency */
/* text-align: center; */
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effect */
}
.plan >h2{
text-align: center;
font-size: largest;
}
.plan:hover {
transform: scale(1.05); /* Magnify effect */
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}
.plan h2 {
color: #59bc69; /* Plan title color */
}
.price {
font-weight: bold;
font-size: 1.2rem;
margin-top: 10px;
}