-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.css
More file actions
72 lines (62 loc) · 1.62 KB
/
pricing.css
File metadata and controls
72 lines (62 loc) · 1.62 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif; /* Changed font */
}
body {
background: linear-gradient(135deg, rgb(106, 130, 251), rgb(252, 92, 125)),
url('https://www.transparenttextures.com/patterns/white-paper.png'); /* Added background texture */
background-size: cover;
color: rgb(51, 51, 51);
}
h1 {
text-align: center;
margin-top: 50px;
font-size: 40px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.body {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
justify-content: center;
padding: 20px;
}
.containerp {
background: rgb(255, 255, 255); /* Solid background for the boxes */
border-radius: 15px;
text-align: center;
padding: 30px;
color: rgb(0, 0, 0);
text-decoration: none;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.containerp:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
background: rgb(224, 247, 250); /* Light blue on hover */
}
.containerp h2 {
font-size: 26px;
margin: 10px 0;
color: rgb(74, 20, 140); /* Deep purple */
}
.containerp h1 {
font-size: 42px; /* Adjusted font size */
margin: 10px 0;
color: rgb(213, 0, 109); /* Pink */
}
.containerp h4 {
font-size: 16px;
color: rgb(85, 85, 85);
margin: 10px 0;
}
.containerp p {
margin-top: 15px;
font-size: 16px;
}
a {
text-decoration: none;
}