| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .side-menu {
- width: 170px;
- padding-left: 26px;
- box-sizing: border-box;
- }
-
- .menu-inner {
- width: 140px;
- min-height: 650px;
- padding: 22px 10px 18px;
- background: #ffffff;
- border: 2px solid #d8caba;
- border-radius: 22px;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- }
-
- .menu-title {
- margin: 0 0 14px;
- padding-left: 0;
- font-size: 15px;
- font-weight: 700;
- color: #5a4a3c;
- text-align: center;
- }
-
- .menu-list {
- display: flex;
- flex-direction: column;
- gap: 10px;
- }
-
- .menu-button {
- width: 100%;
- min-height: 48px;
- padding: 0 8px;
- border: 2px solid #d8caba;
- border-radius: 8px;
- background: #ffffff;
- color: #3a2f27;
- font-size: 15px;
- font-weight: 700;
- text-decoration: none;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- box-sizing: border-box;
- }
-
- .menu-button:hover {
- background: #f6efe6;
- }
-
- .menu-button.active {
- background: #8a6543;
- border-color: #8a6543;
- color: #ffffff;
- }
-
- .menu-note {
- margin-top: auto;
- padding: 10px 8px;
- border: 2px solid #d8caba;
- border-radius: 8px;
- background: #eadfce;
- color: #6a5a4b;
- font-size: 13px;
- line-height: 1.35;
- text-align: center;
- box-sizing: border-box;
- }
|