-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (73 loc) · 1.41 KB
/
styles.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
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
body {
background-color: #f8f9fa;
font-family: 'Arial', sans-serif;
}
h1 {
color: #343a40;
}
button {
width: 200px;
margin: 10px;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-danger {
background-color: #dc3545;
border-color: #dc3545;
}
.modal-content {
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.carousel-item p {
font-size: 1.2rem;
color: #495057;
text-align: center;
}
.carousel-item img {
max-height: 100px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: #343a40;
border-radius: 50%;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
background-color: #007bff;
}
/* Animation for the modal title */
.animated-title {
animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Custom styles for better responsiveness */
.modal-content {
padding: 15px;
}
.carousel-item {
text-align: center;
}
.instruction-text {
font-size: 1rem;
margin-top: 3px;
}
@media (max-width: 576px) {
.modal-content {
padding: 10px;
}
.instruction-text {
font-size: 0.9rem;
}
}