This commit is contained in:
2023-01-17 20:26:15 +08:00
parent f0493c60f6
commit eb1cddab7c
8 changed files with 276 additions and 2 deletions

54
main-menu-style.css Normal file
View File

@@ -0,0 +1,54 @@
/* 主页UI */
/* 四个斜方块 */
.box {
margin-left: auto;
margin-top: auto;
margin-bottom: auto;
margin-right: auto;
border: 80px;
border-radius: 10%;
width: 80px;
height: 80px;
border-color: #C0B0FF;
border-width: 1px;
border-style: solid;
display: flex;
align-items: center;
justify-content: center;
transform: rotate(45deg);
box-shadow: 0px 0px 2px 2px #CABDFF;
background-color: rgba(192, 176, 255, 0.3);
}
.box_text {
font-size: large;
transform: rotate(-45deg);
color: #8F8F8F;
}
.box_press {
margin-left: auto;
margin-top: auto;
margin-bottom: auto;
margin-right: auto;
border: 80px;
border-radius: 10%;
width: 80px;
height: 80px;
border-color: #C0B0FF;
border-width: 1px;
border-style: solid;
display: flex;
align-items: center;
justify-content: center;
transform: rotate(45deg);
box-shadow: 0px 0px 2px 2px #CABDFF;
background-color: rgba(138, 110, 250, 0.3);
}
.box_text_press {
font-size: large;
transform: rotate(-45deg);
color: #555555;
}