2024-11-29 13:56:18 +00:00
|
|
|
/** Link decoration */
|
|
|
|
* .site-title a {
|
|
|
|
color: #898989;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* .site-title a:hover {
|
|
|
|
color: #5F5F5F;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* article h2 a {
|
|
|
|
color: #5F5F5F;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* article h2 a:hover {
|
|
|
|
color: #5F5F5F;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Post title colours */
|
|
|
|
.post-title {
|
|
|
|
color: #5F5F5F;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Tag Link colours */
|
|
|
|
.tag {
|
|
|
|
color: #898989;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag:hover {
|
|
|
|
color: #5F5F5F;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Icons */
|
|
|
|
.inline-svg {
|
|
|
|
display: inline-block;
|
|
|
|
height: 1rem;
|
|
|
|
width: 1rem;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Dark Mode */
|
|
|
|
.dark-mode {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-mode * h2 a {
|
|
|
|
text-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2024-11-29 17:10:22 +00:00
|
|
|
|
|
|
|
/** Collapsible **/
|
|
|
|
|
|
|
|
/* Style the button that is used to open and close the collapsible content */
|
|
|
|
.collapsible {
|
|
|
|
background-color: #eee;
|
|
|
|
color: #444;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 18px;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
text-align: left;
|
|
|
|
outline: none;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
|
|
|
|
.active, .collapsible:hover {
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Style the collapsible content. Note: hidden by default */
|
2024-11-30 06:14:20 +00:00
|
|
|
.collapsible-content {
|
2024-11-29 17:10:22 +00:00
|
|
|
padding: 0 18px;
|
|
|
|
display: none;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #f1f1f1;
|
2024-11-30 06:14:20 +00:00
|
|
|
color: black;
|
2024-11-29 17:10:22 +00:00
|
|
|
}
|
|
|
|
|