12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- body{
- height: 100%;
- background-color: #181818;
- color: #FFF;
- }
- page{
- height: 100%;
- }
- view{
- box-sizing: border-box;
- }
- view[flex]{
- display: flex;
- }
- view[wrap]{
- flex-wrap: wrap;
- }
- view[center]{
- justify-content: center;
- align-items: center;
- }
- view[between]{
- justify-content:space-between;
- align-items: center;
- }
- view[around]{
- justify-content: space-around;
- align-items: center;
- }
- img[mini]{
- width: 48rpx;
- height: 48rpx;
- }
- .app-container{
- padding: 32rpx;
- }
- input{
- height: 40px;
- line-height: 40px;
- }
- input,
- textarea{
- border: 1px solid #dcdfe6;
- padding: 0 15px;
- border-radius: 4px;
- margin: 16rpx 0 0 0;
- width: 100%;
- box-sizing: border-box;
- }
- textarea{
- padding: 30rpx;
- }
|