30 lines
531 B
Plaintext
30 lines
531 B
Plaintext
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
.content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content textarea {
|
|
width: 100%;
|
|
min-height: 500rpx;
|
|
background-color: #fff;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content>view {
|
|
background-color: #378fff;
|
|
color: #fff;
|
|
font-size: 30rpx;
|
|
font-weight: 500;
|
|
padding: 20rpx 200rpx;
|
|
border-radius: 60rpx;
|
|
margin-top: 30rpx;
|
|
} |