-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
91 lines (81 loc) · 1.4 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
.bg-dark{
background-color: black !important;
}
header {
padding: 156px 0 100px;
}
.ham {
position: relative;
width: 40px;
height: 40px;
cursor: pointer;
background-color: black;
}
.ham_line {
position: absolute;
left: 9px;
width: 22px;
height: 2px;
background-color: white;
}
.ham_line1 {
top: 11px;
transition: all 0.3s;
}
.ham_line2 {
top: 18px;
}
.ham_line3 {
top: 25px;
transition: all 0.3s;
}
.clicked .ham_line1 {
transform: rotate(45deg);
top: 20px;
}
.clicked .ham_line2 {
width: 0px;
}
.clicked .ham_line3 {
transform: rotate(-45deg);
top: 20px;
}
.navbar-dark .navbar-toggler{
border-color: black;
outline: none;
}
.navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 10%;
}
.navbar-toggler .middle-bar {
opacity: 0;
}
.navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% 90%;
}
.navbar-toggler.collapsed .top-bar {
transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
}
.icon-bar {
width: 22px;
height: 2px;
background-color: #B6B6B6;
display: block;
transition: all 0.2s;
margin-top: 4px
}
.navbar-toggler {
border: none;
background: transparent !important;
}
.bar img {
width: 100%;
}