-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
101 lines (94 loc) · 1.33 KB
/
main.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
body{
font-family: 'Poppins', sans-serif;
color:#240C48;
}
.blue{
color: #240C48;
}
.yellow{
color: #FEB83F;
}
.white{
color: white;
}
.sections{
/* height: 100vh; */
}
/*navbar*/
.navbar .container-fluid {
padding: 0 8%;
}
.navbar-brand {
display: inline-flex;
align-items: center;
padding: 0;
}
.navbar{
background-color: #240C48;
border-radius: 0;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
margin: 0;
}
#logo{
margin: 1px 50px;
color: white;
}
.nav>li>a{
color:white;
font-weight: bold;
margin-right: 0.5rem;
transition: all 0.3s ease 0s;
}
.nav>li>a:hover{
background-color: transparent;
color: #FEB83F;
}
.nav>li>a.active{
color: #FEB83F;
}
span.icon-bar{
background-color:#ccccb3;
}
@media (min-width: 875px) {
.navbar .container-fluid {
padding: 0 13%;
}
}
@media (min-width: 1100px) {
.nav>li>a {
margin-right: 3rem;
}
}
/*navbar end*/
/*site map*/
.site-map{
background-color: #FEB83F;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
#foot a{
color: white;
text-align: center;
}
#foot h1{
color: white;
text-align: left;
font-weight: 900;
}
#foot h6{
text-align: center;
width: 60%;
font-weight: bold;
}
#foot p{
color: white;
text-align: left;
margin-top: 3rem;
}
#foot .logo{
width: 20%;
position: relative;
margin:0 auto;
}
/*site map ends*/