forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.css
61 lines (48 loc) · 1.06 KB
/
experience.css
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
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
body {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.container {
background-color: rgba(255, 255, 255, 0.9);
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
padding: 30px;
}
h1, h2 {
color: #2c3e50;
}
.card {
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: translateY(-5px);
}
.btn-primary {
background-color: #3498db;
border-color: #3498db;
}
.btn-primary:hover {
background-color: #2980b9;
border-color: #2980b9;
}
.form-control:focus, .form-select:focus {
border-color: #3498db;
box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
@media (max-width: 768px) {
.container {
padding: 15px;
}
}
.animate__animated {
animation-duration: 1s;
}
.animate__fadeIn {
animation-delay: 0.2s;
}
.animate__fadeInLeft, .animate__fadeInRight, .animate__fadeInUp {
animation-delay: 0.4s;
}
.card:nth-child(2) .animate__fadeInUp {
animation-delay: 0.6s;
}