|
| 1 | +* { |
| 2 | + margin: 0; |
| 3 | + padding: 0; |
| 4 | + box-sizing: border-box; |
| 5 | +} |
1 | 6 | body {
|
2 | 7 | background-color: #dcdcdc;
|
3 |
| - font-family: Arial, Helvetica, sans-serif; |
4 |
| - font-size: 20px; |
5 | 8 | }
|
6 |
| -.menuBox { |
7 |
| - margin: 20px; |
| 9 | +.navbar { |
| 10 | + margin: 30px; |
8 | 11 | }
|
9 | 12 | .icon {
|
10 |
| - writing-mode: vertical-lr; |
11 |
| - text-align: center; |
12 |
| - padding: 12px 10px; |
13 |
| - width: 23px; |
14 |
| - height: 17px; |
15 |
| - background-color: #dcdcdc; |
| 13 | + height: 60px; |
| 14 | + width: 60px; |
| 15 | + cursor: pointer; |
| 16 | + padding: 20px 10px; |
16 | 17 | border: 2px solid #555555;
|
17 | 18 | border-radius: 4px;
|
18 |
| - color: #555555; |
19 |
| - cursor: pointer; |
20 |
| - user-select: none; |
21 |
| - outline: none; |
22 |
| - transition: transform 200ms ease-in-out 0s; |
23 |
| -} |
24 |
| -.icon::before, |
25 |
| -.icon::after { |
26 |
| - position: static; |
27 |
| - top: 0; |
28 |
| - left: 0; |
29 |
| -} |
30 |
| -.icon::before { |
31 |
| - content: ""; |
32 | 19 | }
|
33 |
| -.icon::after { |
34 |
| - content: "III"; |
35 |
| -} |
36 |
| -.icon:hover { |
37 |
| - transform: scale(1.1); |
| 20 | +.bar { |
| 21 | + height: 5px; |
| 22 | + width: 100%; |
| 23 | + background: #555555; |
| 24 | + border-radius: 10px; |
| 25 | + display: block; |
| 26 | + transition: .5s ease; |
38 | 27 | }
|
39 |
| -.icon::marker { |
40 |
| - font-size: 0; |
| 28 | +#bar1{ |
| 29 | + transform: translateY(-8px); |
41 | 30 | }
|
42 |
| -.icon::-webkit-details-marker { |
43 |
| - display: none; |
| 31 | +#bar3 { |
| 32 | + transform: translateY(8px); |
44 | 33 | }
|
45 |
| -.menuBox[open] .menu { |
46 |
| - animation-name: openMenu; |
| 34 | +.change #bar1 { |
| 35 | + width: 42px; |
| 36 | + transform: rotateZ(45deg) translate(2px, 5px); |
47 | 37 | }
|
48 |
| -.menuBox[open] .icon::before { |
49 |
| - content: "X"; |
| 38 | +.change #bar2 { |
| 39 | + opacity: 0; |
50 | 40 | }
|
51 |
| -.menuBox[open] .icon::after { |
52 |
| - content: ""; |
| 41 | +.change #bar3 { |
| 42 | + width: 42px; |
| 43 | + transform: rotateZ(-45deg) translate(2px, -5px); |
53 | 44 | }
|
54 | 45 | .menu {
|
55 |
| - height: 0; |
56 | 46 | width: fit-content;
|
57 | 47 | border-radius: 5px;
|
58 | 48 | background-color: darkgray;
|
| 49 | + font-size: 20px; |
59 | 50 | font-family: monospace;
|
60 | 51 | box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
|
61 |
| - margin-top: 8px; |
62 |
| - display: flex; |
63 |
| - flex-direction: column; |
64 |
| - justify-content: space-between; |
65 |
| - overflow: hidden; |
66 |
| - animation: openMenu .3s ease-in-out forwards; |
67 |
| -} |
68 |
| -.menu a { |
| 52 | + margin-top: 10px; |
| 53 | + animation: openMenu .5s ease-in-out forwards; |
| 54 | + transform-origin: top center; |
| 55 | + display: none; |
| 56 | +} |
| 57 | +.menu li { |
| 58 | + list-style: none; |
| 59 | + display: block; |
| 60 | + margin: 10px 20px; |
69 | 61 | padding: 15px 25px;
|
70 |
| - margin: 0 15px; |
71 |
| - color: rgb(55, 55, 55); |
72 | 62 | border-bottom: 2px solid rgba(0, 0, 0, 0.1);
|
73 |
| - text-decoration: none; |
74 | 63 | text-align: center;
|
75 |
| - transition: filter 200ms linear 0s; |
76 | 64 | }
|
77 |
| -.menu a:nth-of-type(1) { |
78 |
| - padding-top: 20px; |
| 65 | +.menu li a { |
| 66 | + text-decoration: none; |
| 67 | + color: rgb(55, 55, 55); |
79 | 68 | }
|
80 |
| -.menu a:nth-last-of-type(1) { |
| 69 | +.menu li:nth-last-child(1) { |
81 | 70 | border-bottom: none;
|
82 | 71 | padding-bottom: 20px;
|
83 | 72 | }
|
84 |
| -.menu a:hover { |
| 73 | +.menu li:hover { |
85 | 74 | transform: scale(1.1);
|
86 |
| - transition: 0.2s ease-out; |
| 75 | + transition: 0.2s ease; |
87 | 76 | color: rgb(35, 35, 35);
|
88 | 77 | }
|
| 78 | +.open { |
| 79 | + display: block; |
| 80 | +} |
89 | 81 | @keyframes openMenu {
|
90 | 82 | 0% {
|
91 |
| - height: 0; |
| 83 | + transform: scaleY(0) |
| 84 | + } |
| 85 | + 80% { |
| 86 | + transform: scaleY(1.1) |
92 | 87 | }
|
93 | 88 | 100% {
|
94 |
| - height: 315px; |
| 89 | + transform: scaleY(1) |
95 | 90 | }
|
96 | 91 | }
|
| 92 | + |
| 93 | + |
| 94 | + |
| 95 | + |
| 96 | + |
| 97 | + |
| 98 | + |
| 99 | + |
| 100 | + |
| 101 | + |
| 102 | + |
| 103 | + |
0 commit comments