create basic radial menu

This commit is contained in:
evanpelle
2024-09-26 16:24:58 -07:00
parent e5bcdb986f
commit 851e12613a
10 changed files with 1055 additions and 92 deletions
+24
View File
@@ -298,4 +298,28 @@ h3 {
display: block;
margin: 5px 0;
}
}
/* Radial Menu */
.radial-menu {
position: absolute;
display: none;
width: 150px;
height: 150px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.5);
}
.menu-item {
position: absolute;
width: 40px;
height: 40px;
border-radius: 50%;
background: white;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
cursor: pointer;
}