22 lines
No EOL
431 B
CSS
22 lines
No EOL
431 B
CSS
* {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.list-complete-item {
|
|
padding: 4px;
|
|
margin-top: 4px;
|
|
border: solid 1px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.list-complete-enter, .list-complete-leave-active {
|
|
opacity: 0;
|
|
} |