forked from Fanrco/PLANTEST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sticky-menu.css
57 lines (52 loc) · 1.05 KB
/
sticky-menu.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
body {
width: 100%;
height: 100%;
}
html {
width: 100%;
height: 100%;
}
@media(min-width:767px) {
.navbar {
padding: 20px 0;
-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
transition: background .5s ease-in-out,padding .5s ease-in-out;
}
.top-nav-collapse {
padding: 0;
}
}
.welcome-section {
height: 100%;
padding-top: 150px;
text-align: center;
background: #5ebf00;
color: white;
}
.planner-section {
height: 100%;
padding-top: 100px;
text-align: center;
color: black;
background: #EFDECD;
}
.buy-section {
height: 100%;
padding-top: 100px;
text-align: center;
color: black;
background: #FFF;
}
.navbar-default .navbar-nav > li > a:hover {
color: greenyellow;
background-color: #5ebf00;
}
.navbar-default {
color: white;
background-color: #5ebf00;
border-color: black;
}
.navbar-default .navbar-nav > li > a {
color: white;
}