78 lines
1.2 KiB
SCSS
78 lines
1.2 KiB
SCSS
|
|
---
|
||
|
|
---
|
||
|
|
@use "uno";
|
||
|
|
@use "tables";
|
||
|
|
@use "monokai";
|
||
|
|
@use "timeline";
|
||
|
|
@use "gallery";
|
||
|
|
|
||
|
|
/* Modifications */
|
||
|
|
|
||
|
|
pre.highlight,
|
||
|
|
.highlight pre {
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
pre.highlight code,
|
||
|
|
.highlight pre code {
|
||
|
|
white-space: pre-wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn,
|
||
|
|
.navigation__item a {
|
||
|
|
margin: 5px 0;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pagination__page-number {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.categories a,
|
||
|
|
.tags a {
|
||
|
|
border: 1px solid #e25440;
|
||
|
|
border-radius: 20px;
|
||
|
|
color: #e25440;
|
||
|
|
display: inline-block;
|
||
|
|
font-size: 12px;
|
||
|
|
margin: 5px 0;
|
||
|
|
padding: 5px 10px;
|
||
|
|
text-shadow: none;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.post-meta__tags {
|
||
|
|
font-size: 12px;
|
||
|
|
padding: 0 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer__copyright {
|
||
|
|
margin: 0 20px 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.user-image {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center; /* keeps both images centered */
|
||
|
|
width: 130px;
|
||
|
|
height: 130px;
|
||
|
|
border: 3px solid #fff;
|
||
|
|
border-radius:100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.user-images {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center; /* keeps both images centered */
|
||
|
|
gap: 35px; /* spacing between image and divider */
|
||
|
|
margin-bottom: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.user-divider {
|
||
|
|
width: 2px;
|
||
|
|
height: 80px; /* should be less than image height */
|
||
|
|
background: rgba(255, 255, 255, 0.146); /* divider color */
|
||
|
|
}
|
||
|
|
|