WordPress Theme SpacePress WP
SpacePress WP is a clean, flexible, fast and accessibility-ready block theme. Its default look is a stylish black on white background color scheme and lexend font (a sans-serif typography). SpacePress WP is built from the ground up for flexibility. It includes six different theme styles to choose from, and different block patterns that you can use to quickly create unique page layouts. This great flexibility characterizes the theme.
SpacePress WP was added to the WordPress repository on 23 June 2025.
Animated underline links in navigation
If you want to have subtly animated navigation, you can find the corresponding CSS rules here. The display is similar to that here on haurand.com. The colour of the animated underline is automatically set according to the colour palette.
To use this animation, please proceed as follows and copy and paste the following CSS rules there:
/* animated underline links in navigation*/
a.wp-block-navigation-item__content {
box-shadow: inset 0 -1px 0 var(--wp--preset--color--contrast-2);
text-decoration: none;
}
a.wp-block-navigation-item__content:hover {
box-shadow: inset 0 -4px 0 var(--wp--preset--color--contrast-2);
transition: all 0.6s ease-in-out;
text-decoration: none;
}
a.wp-block-navigation-item__content:active {
box-shadow: inset 0 -6px 0 var(--wp--preset--color--base-2);
transition: all 0.6s ease-in-out;
text-decoration: none;
}
a.wp-block-navigation-item__content:focus {
outline: 1px dotted;
}