Files
Project-ALLA-UI-Design/main-menu-style.css
2023-01-17 20:26:15 +08:00

54 lines
1.1 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* 主页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;
}