all
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
@import './variables.scss';
|
||||
@import './mixin.scss';
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
.diy-container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.diy-container .diy-menu {
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid #dddddd;
|
||||
height: calc(100vh - 150px);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.diy-menu .min-group .hd {
|
||||
position: relative;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
color: #CCCCCC;
|
||||
font-size: 14px;
|
||||
}
|
||||
.diy-menu .min-group .hd::after{
|
||||
position: absolute;
|
||||
content: '';
|
||||
border: 4px solid transparent;
|
||||
border-top-color: #CCCCCC;
|
||||
right: 0;
|
||||
top: 12px;
|
||||
}
|
||||
|
||||
.diy-menu .min-group .bd {
|
||||
/* display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center; */
|
||||
}
|
||||
|
||||
.diy-menu .min-group .bd .item {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
margin-bottom: 4px;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
cursor: pointer;
|
||||
}
|
||||
.diy-menu .min-group .bd .item:hover{ color: #3a8ee6;}
|
||||
.diy-menu .min-group .bd .item:hover::after{
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 0;
|
||||
display: block;
|
||||
content: '+';
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
line-height: 16px;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
border: 1px solid #3a8ee6;
|
||||
|
||||
}
|
||||
|
||||
.diy-menu .min-group .p-icon {
|
||||
display: none;
|
||||
padding-top: 6px;
|
||||
}
|
||||
|
||||
.diy-menu .min-group .p-text {
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.diy-container .diy-phone {
|
||||
width: 375px;
|
||||
margin: 0 30px;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 18px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.diy-container .diy-info {
|
||||
flex: 1;
|
||||
padding: 10px;
|
||||
border: 1px solid #CCCCCC;
|
||||
height: calc(100vh - 150px);
|
||||
overflow-y: auto;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
// base color
|
||||
$blue:#186eeb;
|
||||
$color-primary: #72bff3;
|
||||
Reference in New Issue
Block a user