-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
63 lines (55 loc) · 1.13 KB
/
main.css
File metadata and controls
63 lines (55 loc) · 1.13 KB
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
.navBar {
background-color: #444;
padding: 10px 15px;
}
.navBar ul li a {
text-decoration: none;
color: #ffffff;
padding: 10px 0px;
}
#subMenuContainer {
background-color: #888;
padding: 0px 0px;
width: 100%;
}
#subMenuContainer ul,
.navBar ul {
margin: auto auto;
padding: 0px
}
#subMenuContainer ul {
padding: 20px 0px !important;
position: relative;
}
#subMenuContainer ul li,
.navBar ul li {
list-style-type: none;
list-style: none;
width: 160px;
display: inline-block;
}
#subMenuContainer ul li a {
text-decoration: none;
color: #fff;
text-align: left;
padding: 30px 15px;
font-weight: lighter;
font-size: 15px;
}
.isSubMenuClosed,
.isMenuNotVisible {
//would be good is if use sass and write some function or mxin
//to wrapp the transitions.
-webkit-transition: 0.33s ease-out-in;
-moz-transition: 0.33s ease-out-in;
-o-transition: 0.33s ease-out-in;
transition: 0.33s ease-out-in;
display: none;
}
.isSubMenuOpen {
-webkit-transition: 0.33s ease-out-in;
-moz-transition: 0.33s ease-out-in;
-o-transition: 0.33s ease-out-in;
transition: 0.33s ease-out-in;
display: block;
}