54 lines
745 B
Plaintext
54 lines
745 B
Plaintext
|
|
.logo {
|
|
height: 200rpx;
|
|
width: 200rpx;
|
|
margin-top: 200rpx;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 50rpx;
|
|
}
|
|
.text-area {
|
|
margin-top: 50px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: cornflowerblue;
|
|
color: white;
|
|
padding: 5px;
|
|
}
|
|
.title {
|
|
font-size: 36rpx;
|
|
color: #8f8f94;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
height: 300px;
|
|
}
|
|
.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
box-sizing: 20px;
|
|
padding: 10px;
|
|
}
|
|
.item {
|
|
/* display: inline-block; */
|
|
margin: 0 10px;
|
|
font-size: 16px;
|
|
}
|
|
.w-box {
|
|
width: 400px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
}
|
|
#editor {
|
|
width: 100%;
|
|
height: 300px;
|
|
background-color: #CCCCCC;
|
|
}
|
|
button {
|
|
margin-top: 10px;
|
|
}
|
|
|