-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle5.css
More file actions
91 lines (78 loc) · 1.43 KB
/
Copy pathstyle5.css
File metadata and controls
91 lines (78 loc) · 1.43 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
body {
font-family: Arial, sans-serif;
background-color: #f5f8ff;
margin: 0;
padding: 20px;
text-align: center;
}
h1 {
margin-bottom: 10px;
}
p {
color: #555;
margin-bottom: 30px;
}
.pricing-table {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap; /* responsive ke liye */
}
.plan {
background: #fff;
border: 1px solid #ddd;
border-radius: 12px;
padding: 20px;
width: 250px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover {
transform: translateY(-6px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.plan h2 {
margin-top: 0;
font-size: 22px;
}
.plan p {
font-size: 18px;
font-weight: bold;
color: #2563eb; /* blue */
}
.plan ul {
list-style: none;
padding: 0;
margin: 20px 0;
text-align: left;
}
.plan ul li {
margin: 8px 0;
padding-left: 20px;
position: relative;
}
.plan ul li::before {
content: "✓";
color: #2563eb;
font-weight: bold;
position: absolute;
left: 0;
}
button {
background: #2563eb;
color: white;
border: none;
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
cursor: pointer;
transition: background 0.2s ease;
}
button:hover {
background: #1e40af;
}
/* Standard plan highlight */
.plan:nth-child(2) {
background-color: #e8f1ff;
border: 2px solid #2563eb;
}