-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (99 loc) · 2.23 KB
/
style.css
File metadata and controls
110 lines (99 loc) · 2.23 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.small-divider{
background-color:rgba(255, 255, 255, 0.124);
width: 100%;
height: 1rem;
}
.text-align{
text-align: center;
margin: 3rem;
}
.carousel-caption {
background-color: rgba(255, 255, 255, 0.124);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
border-radius: 10px;
padding: 1rem;
}
.container-sm{
padding: 40px;
align-items: center;
justify-content: center;
}
.heading{
text-align: center;
align-items: center;
justify-content: center;
font-size: 3rem;
width: 100%;
height: 5rem;
background-color: rgba(255, 255, 255, 0.124) ;
}
input:focus,
textarea:focus {
border-color: var(--bs-danger) !important;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5) !important;
outline: none;
}
/* Space between items and alert styling */
.accordion-item {
margin-bottom: 2rem;
border: 1px solid #ffffff;
border-radius: 0.375rem;
background-color: rgba(255, 255, 255, 0.124);
}
/* Collapsed (before click) */
.accordion-button {
background-color: rgba(255, 255, 255, 0.124);
color: white;
font-weight: bold;
box-shadow: none;
transition: background-color 0.3s ease;
}
/* Expanded (after click) */
.accordion-button:not(.collapsed) {
background-color: #dc3545;
color: white;
}
/* Optional: Focus ring on click */
.accordion-button:focus {
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
/* Accordion body content */
.accordion-body {
background-color: rgba(255, 255, 255, 0.124);
color: #ffffff;
}
.accordion-button::after {
filter: invert(29%) sepia(92%) saturate(745%) hue-rotate(332deg) brightness(90%) contrast(90%);
}
.card-group{
gap: 2rem;
}
.card{
border-radius: 1rem;
}
@media screen and (max-width: 480px) {
.carousel-item , img{
height: 200px;
}.small-divider{
height: 0.5rem;
}
.gpay{
width: 325px;
height: 480px;
margin: none;
}
.card img{
height: 260px;
}
.heading{
font-size: 2rem;
height: 3.3rem;
}
.center{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}