Feat: add big-button plugin

This commit is contained in:
2022-08-29 08:01:10 +02:00
parent 735cd0bd59
commit b6b089542e
6 changed files with 102 additions and 1 deletions

View File

@@ -75,6 +75,39 @@ img {
box-shadow: 0px 0px 10px @light-grey;
}
.button {
margin: 20px;
border: 3px solid @orange;
width: 250px;
height: 150px;
border-radius: 25px;
display: inline-flex;
vertical-align: top;
padding: 5px 15px;
* {
display: flex;
justify-content: center;
flex-direction: column;
gap: 10px;
}
a {
width:100%;
height:100%;
}
.nolink {
width:100%;
height:100%;
}
h3 {
margin: 0px;
}
}
.button:hover {
background-color: @light-grey;
}
aside {
background-color: @sidebar-bg;
color: @sidebar-text-color;

File diff suppressed because one or more lines are too long