32 lines
667 B
SCSS
32 lines
667 B
SCSS
.myProject{
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background: #f1f1f1;
|
|
.myProjectItem{
|
|
//height: 20%;
|
|
margin: 20px;
|
|
border-radius: 10px;
|
|
background: #ffffff;
|
|
padding: 15px;
|
|
font-size: 28px;
|
|
line-height: 50px;
|
|
color: #333333;
|
|
.myProjectIndex{
|
|
color: #9b9b9f;
|
|
}
|
|
.project{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-flow: wrap;
|
|
text-align: center;
|
|
view{
|
|
width: 45%;
|
|
height: 100rpx;
|
|
border: 1px solid #cccccc;
|
|
line-height: 100rpx;
|
|
margin: 8px 0 8px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|