-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (42 loc) · 890 Bytes
/
styles.css
File metadata and controls
56 lines (42 loc) · 890 Bytes
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
:root {
--magenta: #c56cd6;
--blueberry: #3125ad;
--sage: #89a665;
}
.bg-magenta {
background-color: var(--magenta);
}
.bg-blueberry {
background-color: var(--blueberry);
}
.bg-sage {
background-color: var(--sage);
}
.text-magenta {
color: var(--magenta);
}
.text-blueberry {
color: var(--blueberry);
}
.text-sage {
color: var(--sage);
}
.border-magenta {
border-color: var(--magenta);
}
.border-blueberry {
border-color: var(--blueberry);
}
.border-sage {
border-color: var(--sage);
}
.hero-section {
background: linear-gradient(135deg, rgba(214, 51, 132, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.testimonial-card {
background: linear-gradient(135deg, rgba(214, 51, 132, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
}