random word shortcode

This commit is contained in:
zoe 2022-04-16 22:01:53 +02:00
parent 26372fdcca
commit d267fc4356
10 changed files with 91 additions and 3 deletions

View file

@ -35,6 +35,25 @@ a {
color: $dark-ln;
}
.randomword-button{
&.light {
border-color: $light-fg;
background-color: $light-bg;
color: $light-fg;
&:hover {
color: $light-bg;
background-color: $light-fg;
}
}
border-color: $dark-fg;
background-color: $dark-bg;
color: $dark-fg;
&:hover{
color: $dark-bg;
background-color: $dark-fg;
}
}
a.footer-nav-item.active,
a.footer-nav-item:hover {
&.light {

View file

@ -21,13 +21,19 @@ footer {
margin-bottom: 84pt;
}
.randomword-button {
width: auto;
height: auto;
}
#content p,
#content ul,
#content ol,
#content table,
code,
.postdescription,
hr
hr,
#content div .video-player
{
margin-right: 24%;
margin-left: 24%;

View file

@ -108,3 +108,12 @@ ul a{
padding: 0.12em;
}
}
.randomword-button {
border-style: solid;
padding: 0.12em;
border-radius: 0;
&::before {
content: "";
}
}