-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
151 lines (134 loc) · 2.52 KB
/
styles.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
html{
scroll-behavior: smooth;
}
.max-width{
max-width: 1300px;
padding: 0 80px;
margin: auto;
}
/*------------home page styling----------------------------------------------*/
/*pre loading animations*/
.loader {
position: fixed;
z-index: 99;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: white;
display: flex;
justify-content: center;
align-items: center;
}
.loader.hidden {
animation: fadeOut 5s;
animation-fill-mode: forwards;
}
.loader.hidden1 {
animation: fadeOut 10s;
animation-fill-mode:none;
}
@keyframes fadeOut {
100% {
opacity: 0;
visibility: hidden;
}
}
/*----------------------------------------------------------*/
/*carousal and sections*/
.button1{
margin:0px 400px;
font-size: 27px;
padding: 10px;
border-radius: 15px;
background-color: black;
color: white;
font-family: 'Times New Roman', Times, serif;
}
@media only screen and (max-width : 620px) {
.button1{
margin:0px 0px;
}
}
.button1:hover{
color: white;
text-decoration: none;
}
.button {
background-color: black;
color: white;
font-size: 20px;;
padding: 5px;
width: 200px;
border-radius: 8px;
}
.button1:hover, .button:hover{
color:cornsilk;
background-color: #480032;
text-decoration: none;
}
.space{
height: 30px;
}
.carousel-item {
height: 65vh;
min-height: 630px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover
}
#mainNavbar {
padding-left: 20px;
padding-top: 20px
}
.container1{
margin:5px 100px;
background-color:#E5FBB8;
color: black;
padding: 8px 15px;
}
.container2{
margin:5px 100px;
background-color:#E5FBB8;
color: black;
padding: 8px 15px;
}
.navbar-dark .navbar-brand {
font-family: serif;
}
.navbar-nav .nav-link {
font-family: serif;
}
.display-4 {
font-family: serif;
}
.lead {
font-family: serif;
font-size: 22px;
}
.navbar.scrolled {
background: rgb(34, 31, 31);
transition:ease-in-out 500ms;
}
.lead1{
font-family: serif;
font-size: 40px;
}
body{
background-color: #FFF5AB;
}
.font-weight-light {
color:black;
font-size:30px;
font-family: serif;
font-weight: 900;
}
/*----------------------------------------------------------*/