-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (102 loc) · 1.82 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
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
body {
height: 100%;
background: #484848;
overflow-y: hidden;
}
a:hover, a:active {
text-decoration: none;
}
.navbar-right a {
font-size: 30px;
}
.nav-menu {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100vh;
background: #000;
display: none;
animation-name: bounceOutDown;
}
.navbar>.container-fluid .navbar-brand {
line-height: 30px;
color: rgba(255, 255, 255, .8);
}
.navbar-inverse .navbar-nav>li>a {
color: rgba(255, 255, 255, .8);
}
.nav-menu.nav-menu-active {
animation-name: bounceInUp;
}
.nav-menu a.dismiss-nav {
font-size: 30px;
position: absolute;
right: 15px;
top: 15px;
color: rgba(255, 255, 255, .8);
}
.nav-menu a.dismiss-nav:hover {
color: #fff;
}
.nav-menu .nav-menu-list {
list-style-type: none;
padding: 0;
margin: 0;
color: #fff;
}
.nav-menu .nav-content {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.nav-menu .nav-title {
text-transform: uppercase;
color: #fff;
}
.nav-menu .nav-menu-list .nav-menu-list-item {
font-size: 25px;
padding: .3em 0;
}
.nav-menu .nav-menu-list .nav-menu-list-item a {
color: #fff;
}
.animated {
animation-duration: 1s;
animation-fill-mode: both;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}