Spaces:
Runtime error
Runtime error
Delete templates/menu.css
Browse files- templates/menu.css +0 -56
templates/menu.css
DELETED
|
@@ -1,56 +0,0 @@
|
|
| 1 |
-
/* Hamburger Menu Styles */
|
| 2 |
-
#menu {
|
| 3 |
-
position: absolute;
|
| 4 |
-
top: 0;
|
| 5 |
-
left: 0;
|
| 6 |
-
z-index: 10;
|
| 7 |
-
transform: translateX(-100%);
|
| 8 |
-
visibility: hidden;
|
| 9 |
-
opacity: 0;
|
| 10 |
-
background-color: rgb(31, 41, 55);
|
| 11 |
-
transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
| 12 |
-
backdrop-filter: blur(10px);
|
| 13 |
-
border-right: 1px solid rgba(255, 255, 255, 0.2);
|
| 14 |
-
}
|
| 15 |
-
|
| 16 |
-
#menu.open {
|
| 17 |
-
transform: translateX(0);
|
| 18 |
-
visibility: visible;
|
| 19 |
-
opacity: 1;
|
| 20 |
-
}
|
| 21 |
-
|
| 22 |
-
#menu button {
|
| 23 |
-
transition: background-color 0.2s ease;
|
| 24 |
-
background-color: rgba(0, 0, 0, 0.1);
|
| 25 |
-
margin: 2px;
|
| 26 |
-
border-radius: 8px; /* 少し角を丸める */
|
| 27 |
-
display: flex;
|
| 28 |
-
align-items: center;
|
| 29 |
-
justify-content: flex-start;
|
| 30 |
-
gap: 10px;
|
| 31 |
-
padding: 0.75rem 1rem;
|
| 32 |
-
width: 100%;
|
| 33 |
-
text-align: left;
|
| 34 |
-
border: none;
|
| 35 |
-
color: #fff;
|
| 36 |
-
font-size: 1rem;
|
| 37 |
-
cursor: pointer;
|
| 38 |
-
}
|
| 39 |
-
|
| 40 |
-
#menu button:hover {
|
| 41 |
-
background-color: rgba(55, 65, 81, 0.7);
|
| 42 |
-
}
|
| 43 |
-
|
| 44 |
-
/* Hamburger Menu Button */
|
| 45 |
-
#menuButton {
|
| 46 |
-
background-color: rgba(255, 255, 255, 0.1);
|
| 47 |
-
border: none;
|
| 48 |
-
border-radius: 50%;
|
| 49 |
-
padding: 0.75rem; /* サイズを少し大きく */
|
| 50 |
-
cursor: pointer;
|
| 51 |
-
transition: background-color 0.2s ease;
|
| 52 |
-
}
|
| 53 |
-
|
| 54 |
-
#menuButton:hover {
|
| 55 |
-
background-color: rgba(255, 255, 255, 0.2);
|
| 56 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|