Compare commits
2 Commits
d98fb3bd75
...
5ca22cce04
Author | SHA1 | Date | |
---|---|---|---|
5ca22cce04 | |||
58c5a42873 |
@ -31,8 +31,8 @@
|
||||
|
||||
// for toggling submenus in mobile navigation drawer
|
||||
let submenuLinks = document.querySelectorAll('.drawer .has-submenu');
|
||||
[...submenuLinks].forEach(function(submenuLink) {
|
||||
submenuLink.addEventListener('click', () => {
|
||||
[...submenuLinks].forEach(submenuLink => {
|
||||
submenuLink.addEventListener('click', function() {
|
||||
submenuLink.querySelector('.submenu').classList.toggle('opened')
|
||||
})
|
||||
})
|
||||
|
@ -812,6 +812,25 @@ footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* about styles */
|
||||
|
||||
#about-img {
|
||||
width: 50%;
|
||||
height: auto;
|
||||
display:block;
|
||||
margin:auto;
|
||||
}
|
||||
|
||||
|
||||
/* single page styles */
|
||||
.single header {
|
||||
flex-direction: column;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
.single .h-entry img {
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
/* mobile styles */
|
||||
|
||||
@ -929,42 +948,4 @@ footer a:hover {
|
||||
.menu ul:first-child {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* about styles */
|
||||
|
||||
#about-img {
|
||||
width: 50%;
|
||||
height: auto;
|
||||
display:block;
|
||||
margin:auto;
|
||||
}
|
||||
|
||||
|
||||
/* single page styles */
|
||||
.single header {
|
||||
flex-direction: column;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
.single .h-entry img {
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.lumbung-radio-player {
|
||||
display: flex;
|
||||
color: var(--sounds-dark);
|
||||
border: 1px solid var(--sounds-dark);
|
||||
background: var(--sounds-light);
|
||||
font-style: italic;
|
||||
width: fit-content;
|
||||
padding: 1rem;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
bottom: 2rem;
|
||||
right: 2rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user