Files
template-visual/src/pages/index.less
Qingtian239113 6afcaa96fe Initial commit
2022-03-28 17:29:25 +08:00

130 lines
2.4 KiB
Plaintext

.body {
width: 100vw;
height: 100vh;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.container {
padding: 5px 15px;
//background-image: url("../assets/map.png") ;
background-color: black;
}
.containerBody {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
height: 88%;
}
.left_box {
width: 20%;
//height: 95%;
//min-width: 900px;
//background-color: aqua;
}
.middle_box {
width: 60%;
//background-color: saddlebrown;
}
.right_box {
width: 20%;
//background-color: greenyellow;
}
.modal_box {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -75%);
width: 769px;
height: 430px;
background: rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
border: 2px solid #10FDF2;
backdrop-filter: blur(10px);
.modal_title {
transform: translateY(5%);
height: 8%;
font-size: 18px;
font-weight: 500;
color: #FFFFFF;
line-height: 25px;
text-align: center;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.modal_body {
display: flex;
justify-content: space-around;
align-items: center;
height: 22%;
.text {
height: 45px;
width: 25%;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
border-radius: 22px;
background-color: rgba(0, 0, 0, 0.1);
border: 1px solid #14FDF7;
font-size: 14px;
font-weight: 400;
color: #D5D8E2;
line-height: 20px;
text-align: center;
padding-left: 10px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
&:nth-child(1) {
//transform: translateX(55px);
}
}
.title_box {
display: block;
font-size: 20px;
background-color: #10FDF2;
padding: 0 8px 5px 8px;
}
.search_btn {
position: absolute;
right: 15px;
width: 43px;
height: 43px;
border-radius: 50%;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
cursor: pointer;
background: #14FDF7;
}
option {
font-size: 14px;
// background: rgba(47, 253, 239, 0.1);
background-color: rgb(0, 52, 73);
color: #D5D8E2;
backdrop-filter: blur(10px);
border: 2px solid #24A7A4;
}
}
.middleDetails {
display: flex;
justify-content: space-around;
align-items: center;
height: 69%;
.pic {
width: 45%;
height: 200px;
border: 1px solid #14FDF7;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
}
}