-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (80 loc) · 2.46 KB
/
style.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: red; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
.carousel-inner{
height: 60vh;
}
.carousel-item img{
height: 60vh !important;
width: 60vh !important;
}
.carousel-item p h5{
background-color: black;
}
.former-pad {
align-items: left;
padding: 25px 100px;
background-color: white;
}
.pub-pad {
align-items: center;
padding: 25px 100px;
background-color: white;
}
.carousel-item img {
width: auto; /* Retain the original width of the image */
height: auto; /* Retain the original height of the image */
max-width: 100%; /* Ensure the image does not exceed the container width */
max-height: 93vh; /* Ensure the image does not exceed 93% of the viewport height */
margin: auto; /* Center the image horizontally */
display: block; /* Center the image in the container */
object-fit: contain; /* Prevent the image from being cropped */
}
.about_img{
min-width: 100%;
max-height: 280px;
}
.chekcout-my-profile{
background: #a6dcef;
}
footer p{
margin-bottom: 0;
}
/*.my-service .row>*{
padding-right: 0;
padding-left: 0;
}*/
/*for responsive design*/
/*// X-Small devices (portrait phones, less than 576px)*/
/*// No media query for `xs` since this is the default in Bootstrap*/
/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { ... }
/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { ... }
/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { ... }
/*// X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { ... }
/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { ... }