-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (79 loc) · 1.55 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
/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body{
font-family: 'Poppins', sans-serif;
}
/* hero carousel css */
.carousel-item::before{
position: absolute;
content: '';
background-color: rgb(0 0 0 / 60%);
height: 100%;
width: 100%;
}
.carousel-inner > .carousel-item > img {
height:700px ;
object-fit: cover;
}
.carousel-caption{
top: 38%;
}
.carousel-caption-heading{
font-size: 48px;
}
.paragraph-text{
font-size: 18px;
}
/* elearning section css */
.inner-img{
background-image: url(./images/working.png);
background-position: center center;
background-size: cover;
height: 100%;
padding: 400px 0;
}
.spacing{
padding: 300px 0;
}
/* testimonial btn css */
.testimonial-btn-left{
left: -5px;
}
.testimonial-btn-right{
right: -5px;
}
/* button style */
.cs-social-btn{
background-color: #5a5a5a87 !important;
}
/* Responsive Media queries */
/* Mobile device */
@media only screen and (max-width:576px) {
.carousel-inner > .carousel-item > img {
height:500px ;
}
.carousel-caption{
top: 20%;
}
.carousel-caption-heading{
font-size: 22px;
}
.paragraph-text{
font-size: 16px;
}
.spacing{
padding: 192px 0;
}
}
/* Tablet devices */
@media only screen and (min-width: 577px) and (max-width: 992px) {
.carousel-caption{
top: 30%;
}
.carousel-caption-heading{
font-size: 36px;
}
.spacing{
padding: 200px 0;
}
}