-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (44 loc) · 981 Bytes
/
style.css
File metadata and controls
60 lines (44 loc) · 981 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
49
50
51
52
53
54
55
56
57
58
59
60
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.navbar{
background: #C6E479;
}
.carousel-item img{
width: 100%;
height: 100vh;
}
.about_img{
min-width: 100%;
max-height: 300px;
}
.service img{
width: 100%;
height: 100%;
}
.services{
background: #E6F2C6;
}
.appointment{
background: #C6E479;
}
.bg-footer{
background: #C6E479;
}
.footer-copyright{
background: #201F1F;
}
/* 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) { }