Skip to content

Commit 57803d7

Browse files
author
Akanksha Raghav
authored
Merge pull request #7 from StudentCode-in/master
Pull upstream
2 parents 01d94e6 + 98b278e commit 57803d7

14 files changed

+217
-52
lines changed

assets/css/style.css

Lines changed: 94 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,36 @@ body {
22
background: #fff;
33
color: #444;
44
font-family: "Open Sans", sans-serif;
5+
overflow: hidden;
6+
}
7+
/*------------ Own Carousel ------------*/
8+
.owl-carousel
9+
{
10+
z-index: unset;
11+
}
12+
/*---------------- Own Carousel----------- */
13+
#loading{
14+
position: fixed;
15+
top:0;
16+
left:0;
17+
right:0;
18+
bottom:0;
19+
background-color:#FFF; /* change if the mask should have another color then white */
20+
z-index:99999; /* makes sure it stays on top */
21+
}
22+
#status {
23+
width:100px;
24+
height:100px;
25+
position:absolute;
26+
left:50%; /* centers the loading animation horizontally one the screen */
27+
top:50%; /* centers the loading animation vertically one the screen */
28+
background-image:url("../imgs/loader.gif");
29+
z-index:9999; /* path to your loading animation */
30+
background-repeat:no-repeat;
31+
background-position:center;
32+
background-size: cover;
33+
margin:-50px 0 0 -50px; /* is width and height divided by two */
534
}
6-
735
a {
836
color: #1bb1dc;
937
transition: 0.5s;
@@ -147,15 +175,14 @@ h6 {
147175
#header {
148176
height: 110px;
149177
transition: all 0.5s;
150-
z-index: 997;
178+
z-index: 1;
151179
transition: all 0.5s;
152180
padding: 20px 0;
153181
position: fixed;
154182
left: 0;
155183
top: 0;
156184
right: 0;
157185
transition: all 0.5s;
158-
z-index: 997;
159186
}
160187

161188
#header.header-scrolled,
@@ -175,6 +202,7 @@ h6 {
175202
#header {
176203
height: 70px;
177204
padding: 15px 0;
205+
178206
}
179207
}
180208

@@ -187,6 +215,17 @@ h6 {
187215
letter-spacing: 3px;
188216
text-transform: uppercase;
189217
}
218+
@media (min-width:992px)
219+
{
220+
#header.header-scrolled, #header.header-pages
221+
{
222+
display: flex;
223+
}
224+
.container{
225+
max-width:unset;
226+
width: 1140px;
227+
}
228+
}
190229

191230
@media (max-width: 991px) {
192231
#header .logo h1 {
@@ -870,7 +909,7 @@ h6 {
870909
left: 50%;
871910
margin-left: -25px;
872911
background-color: #999999;
873-
z-index: 100;
912+
874913
border-top-right-radius: 50%;
875914
border-top-left-radius: 50%;
876915
border-bottom-right-radius: 50%;
@@ -918,6 +957,7 @@ h6 {
918957
.timeline-title {
919958
margin-top: 0;
920959
color: #413e66;
960+
font-size: 1.15rem;
921961
}
922962

923963
.timeline-body > p,
@@ -928,6 +968,56 @@ h6 {
928968
.timeline-body > p + p {
929969
margin-top: 5px;
930970
}
971+
@media(min-width:991px)
972+
{
973+
.timeline-panel{
974+
margin: 0px -10px;
975+
}
976+
}
977+
@media(max-width:991px)
978+
{
979+
.timeline-panel{
980+
margin: 0px -20px;
981+
}
982+
}
983+
@media(max-width:767px)
984+
{
985+
.timeline > li > .timeline-panel{
986+
margin: 0px -25px;
987+
}
988+
}
989+
@media(max-width:576px)
990+
{
991+
.timeline > li > .timeline-panel{
992+
margin: 0px 1px;
993+
width: 42%;
994+
}
995+
996+
997+
}
998+
@media (max-width:500px)
999+
{
1000+
.timeline > li > .timeline-badge {
1001+
width: 40px;
1002+
height: 40px;
1003+
line-height: 40px;
1004+
font-size: 1.2em;
1005+
left:51%;
1006+
top:22px;
1007+
}
1008+
.timeline-title {
1009+
margin-top: 0;
1010+
color: #413e66;
1011+
font-size: 1rem;
1012+
}
1013+
1014+
}
1015+
@media(max-width:400px)
1016+
{
1017+
.timeline > li > .timeline-panel{
1018+
margin: 0px -15px;
1019+
}
1020+
}
9311021

9321022
/* Testimonials Section
9331023
--------------------------------*/

assets/css/style3.css

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
/* Search Bar */
22
.search {
3-
border: 2px solid #d6eef8;
4-
border-radius: 2px;
5-
/*overflow: auto;*/
6-
width: 400px;
7-
margin: auto ;
8-
background-color: white;
9-
10-
}
11-
12-
#txtSearch {
13-
border: 0px;
14-
width: 80%;
15-
}
16-
17-
#txtSearch:focus {
18-
outline: 0;
19-
}
20-
21-
22-
/* Media Query For Search Bar */
23-
24-
@media only screen and (min-width : 150px) and (max-width : 767px) {
25-
.search
26-
{
27-
width: 30%;
28-
margin: 0 auto;
29-
}
30-
3+
border: 2px solid #d6eef8;
4+
border-radius: 2px;
5+
/*overflow: auto;*/
6+
width: 400px;
7+
margin: auto ;
8+
background-color: white;
9+
10+
}
11+
12+
#txtSearch {
13+
border: 0px;
14+
width: 80%;
15+
}
16+
17+
#txtSearch:focus {
18+
outline: 0;
19+
}
20+
21+
22+
/* Media Query For Search Bar */
23+
24+
@media only screen and (min-width : 150px) and (max-width : 767px) {
25+
.search
26+
{
27+
width: 30%;
28+
margin: 0 auto;
3129
}
32-
33-
/* End of search bar style */
34-
30+
31+
}
32+
33+
/* End of search bar style */
34+
3535
.card{
36-
margin: 40px;
36+
margin: 40px;
3737
}
3838
.video_image{
39-
height: auto;
40-
width: 100%;
39+
height: auto;
40+
width: 100%;
4141
}
11.5 KB
Loading
54.1 KB
Loading

assets/img/apple-touch-icon.png

-10.7 KB
Loading

assets/img/favicon-16x16.png

440 Bytes
Loading

assets/img/favicon-32x32.png

1.05 KB
Loading

assets/img/favicon.ico

15 KB
Binary file not shown.

assets/img/favicon.png

-6.5 KB
Loading

assets/img/preloader Gif.gif

16 KB
Loading

0 commit comments

Comments
 (0)