42 lines
836 B
CSS
42 lines
836 B
CSS
#header .header-body {
|
|
background-color: rgba(255, 255, 255, 0.85);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
#content p,
|
|
#content a,
|
|
#content li {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
#content ol li,
|
|
#content ul li {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.overflow-ellipsis-1 {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 1; /* Atur jumlah baris yang diinginkan */
|
|
}
|
|
|
|
|
|
.overflow-ellipsis-2 {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 2; /* Atur jumlah baris yang diinginkan */
|
|
}
|
|
|
|
|
|
.overflow-ellipsis-3 {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 3; /* Atur jumlah baris yang diinginkan */
|
|
}
|
|
|