66 lines
782 B
CSS
66 lines
782 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
table {
|
|
margin: 0 auto;
|
|
border-collapse: collapse;
|
|
width: 95%;
|
|
}
|
|
|
|
.top_tr {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.widther {
|
|
width: 15%;
|
|
}
|
|
|
|
.book_widther {
|
|
width: 25%;
|
|
}
|
|
|
|
td {
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
tr,
|
|
td {
|
|
border: 1px solid rgb(213, 218, 218);
|
|
;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.top {
|
|
background-color: rgba(247, 246, 247);
|
|
}
|
|
|
|
button {
|
|
width: 60px;
|
|
height: 30px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: #fff;
|
|
}
|
|
|
|
.buy {
|
|
background-color: rgba(131, 131, 199, 0.616);
|
|
}
|
|
|
|
.sale {
|
|
background-color: rgba(105, 202, 105, 0.363);
|
|
}
|
|
|
|
.del {
|
|
background-color: rgba(245, 193, 193, 0.822);
|
|
}
|
|
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|
|
.active{
|
|
color:#fff;
|
|
background-color: #ccc;
|
|
} |