46 lines
836 B
CSS
46 lines
836 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
|
|
|
|
.logo-labbaik {
|
|
font-family: Pacifico;
|
|
}
|
|
.deskripsi {
|
|
max-width: 250px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#footer {
|
|
/* flex-shrink: none; */
|
|
display: flex;
|
|
width: 70%;
|
|
height: 50px;
|
|
padding-left: 10px;
|
|
padding-right: 0px;
|
|
line-height: 50px;
|
|
/* background: #333; */
|
|
color: grey;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
}
|
|
|
|
.back-user {
|
|
background-color: aqua;
|
|
border-radius: 5%;
|
|
height: 150px;
|
|
}
|
|
.back-pendapatan-bulan {
|
|
background-color: rosybrown;
|
|
border-radius: 5%;
|
|
height: 150px;
|
|
}
|
|
.back-pendapatan-harian {
|
|
background-color: thistle;
|
|
border-radius: 5%;
|
|
height: 150px;
|
|
}
|
|
|
|
.btn-hover-white:hover {
|
|
color: #fff !important;
|
|
}
|