├── README.md ├── index.html └── style.css /README.md: -------------------------------------------------------------------------------- 1 | **Красивый меню с анимацией.** 2 | 3 | # Подписывайте: 4 | [![Instagram](https://img.shields.io/badge/INSTAGRAM-FOLLOW-red?style=for-the-badge&logo=instagram)](https://instagram.com/cs.mer6) 5 | [![Instagram](https://img.shields.io/badge/TELEGRAM-CHANNEL-red?style=for-the-badge&logo=telegram)](https://t.me/Muhammedov) 6 | 7 | 8 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 53 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Roboto:400,700); 2 | 3 | html { 4 | height: 100%; 5 | background-color: #f8f8f8; 6 | } 7 | 8 | body { 9 | overflow: hidden; 10 | height: 100%; 11 | width: 600px; 12 | margin: 0 auto; 13 | background-color: #ffffff; 14 | font-family: 'Roboto', sans-serif; 15 | color: #555555; 16 | } 17 | 18 | a { 19 | text-decoration: none; 20 | color: inherit; 21 | } 22 | 23 | * { 24 | box-sizing: border-box; 25 | } 26 | 27 | $menu_WIDTH: 150px; 28 | 29 | .menu { 30 | display: block; 31 | position: relative; 32 | cursor: pointer; 33 | } 34 | 35 | .menu-title { 36 | display: block; 37 | --------------------------------------------------------------------------------