forked from Talks-To-Wind/Demo-Collaboration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
47 lines (40 loc) · 940 Bytes
/
global.css
File metadata and controls
47 lines (40 loc) · 940 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
.services-container {
background: linear-gradient(45deg, #000428, #004e92);
padding: 2rem;
perspective: 1500px;
}
.card-wrapper {
transform-style: preserve-3d;
transform: rotateY(-30deg) rotateX(50deg);
transition: transform 0.5s ease;
}
.card-wrapper:hover {
transform: rotateY(0deg) rotateX(0deg);
}
.service-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 2rem;
color: white;
box-shadow:
0 15px 25px rgba(0,0,0,0.3),
0 8px 20px rgba(0,0,0,0.2);
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.service-card p {
margin-bottom: 1.5rem;
opacity: 0.8;
}
.service-card .btn-primary {
background-color: #0066ff;
border: none;
padding: 0.5rem 1.5rem;
}
.service-card .btn-primary:hover {
background-color: #0052cc;
}