48 lines
751 B
CSS
48 lines
751 B
CSS
body{
|
|
background: #f8f8f8;
|
|
}
|
|
.lottery-title{
|
|
padding-left: .5rem;
|
|
padding-right: 1rem;
|
|
margin-bottom: 5px;
|
|
}
|
|
.title-left{
|
|
font-weight: bold;
|
|
padding-left: .5rem;
|
|
border-left: solid .2rem #FF6F6F;
|
|
|
|
}
|
|
.title-right{
|
|
color: #676767;
|
|
float: right;
|
|
}
|
|
.lottery-content{
|
|
position: relative;
|
|
border-top: solid 1px #ccc;
|
|
}
|
|
|
|
.reward-item{
|
|
position: relative;
|
|
padding-left: 0.5rem;
|
|
padding-right: .5rem;
|
|
float: left;
|
|
width:100%;
|
|
}
|
|
.item-left{
|
|
float: left;
|
|
width: 20%;
|
|
overflow: hidden;
|
|
text-overflow:ellipsis;
|
|
}
|
|
.item-center{
|
|
text-align: center;
|
|
float: left;
|
|
width: 65%;
|
|
overflow: hidden;
|
|
text-overflow:ellipsis;
|
|
}
|
|
.item-right{
|
|
float: left;
|
|
width: 15%;
|
|
}
|