76 lines
941 B
CSS
76 lines
941 B
CSS
.row {
|
|
background: white;
|
|
width: 100%;
|
|
height: 84px;
|
|
border-bottom: 1px solid #ebebeb;
|
|
position: relative;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.block{
|
|
margin-top: 36px;
|
|
padding: 0 2%;
|
|
}
|
|
|
|
.z{
|
|
width: 100%;
|
|
height: 50px;
|
|
}
|
|
|
|
.name {
|
|
font-size: 1.4rem;
|
|
width: calc(100vw - 5px - 85px);
|
|
color: black;
|
|
line-height: 42px;
|
|
padding-left: 5px;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
width: 60px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.small_title,
|
|
.created_time,
|
|
.updated_time {
|
|
color: #BBBBBB;
|
|
}
|
|
|
|
.operation {
|
|
font-size: 1.2rem;
|
|
line-height: 42px;
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
display: block;
|
|
}
|
|
|
|
.edit {
|
|
background: yellowgreen;
|
|
}
|
|
|
|
.delete {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
|
|
.footer{
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: white;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
border-top: 1px solid #e6e6e6;
|
|
} |