-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (43 loc) · 914 Bytes
/
style.css
File metadata and controls
48 lines (43 loc) · 914 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
.logo-img {
max-width: 100px; /* default size */
height: auto;
}
@media (max-width: 768px) {
.logo-img {
max-width: 80px; /* smaller on tablets and phones */
}
}
@media (max-width: 576px) {
.logo-img {
max-width: 60px; /* smallest on phones */
}
}
.custom-navbar {
background-color: rgb(247, 225, 225);
}
.custom-text ul li a{
font-weight:600;
font-size: 20px;
}
.custom-text ul li a:hover{
color: rgb(235, 111, 111);
}
.form-input{
border: 2px solid rgba(128, 128, 128, 0.411);
}
.form-input:hover:hover{
box-shadow: 0 0 10px rgb(240, 145, 145);
}
.card-img-top{
width: 70px;
}
.testimonial-card{
align-items: center;
}
.testimonial-card:hover{
box-shadow: 0 0 10px rgb(240, 145, 145);}
.footer{
background-color: rgb(247, 225, 225);
position: fixed bottom 0;
width: 100%;
}