-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
33 lines (27 loc) · 1.21 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
body {
background-color: black;
background-repeat: no-repeat;
background-attachment: fixed;
}
/* This class is already present in Bootstrap navbar. No need to add maually */
.navbar {
background: rgba(255,255,255,0.2) !important; /* Give transparent white background to navbar */
/* 0.2 to give little whitish effect. */
/* Put 0 to get complete transperency */
z-index: 2;
backdrop-filter: blur(10px) saturate(125%); /* Blur the background */
/* 10px Gaussian Blur and saturate for fluent design */
-webkit-backdrop-filter: blur(10px) saturate(125%); /* Increases browser compability (safari ios and mac) */
}
/* Add the rest of page in div with this class. Use this class accordingly. It is not necessary */
.main-content {
color: #fff;
margin-top: 60px;
}
/* Below code in only needed if you have dropdown in navbar and want to change its fore and back colors */
.navbar-nav > li > .dropdown-menu {
background-color: #000000;
}
.navbar-nav > li > .dropdown-menu > a{
color: white;
}