functionality for switching contexts via buttons

This commit is contained in:
viehlieb 2022-03-07 22:51:45 +01:00
parent 31ebabd5e0
commit 0140c54363
8 changed files with 223 additions and 0 deletions

46
css/dashboard.css Normal file
View file

@ -0,0 +1,46 @@
.lit-button#dashboard-authentik-button{
background: url('/icons/goauthentik_logo.png') 30px 30px no-repeat;
background-size: contain;
background-position: center;
background-color: lightblue;
border: none;
color: none;
text-align: center;
width: 250px;
height: 250px;
border-radius: 100px;
}
.lit-button#dashboard-authentik-button:hover{
background-color: lightgray;
}
.lit-button#dashboard-nextcloud-button{
background: url('/icons/nextcloud_logo.png') 30px 30px no-repeat;
background-size: contain;
background-position: center;
background-color: lightblue;
border: none;
color: none;
text-align: center;
width: 250px;
height: 250px;
border-radius: 100px;
}
.lit-button#dashboard-nextcloud-button:hover{
background-color: lightgrey;
}
.lit-button#dashboard-wekan-button{
background: url('/icons/wekan_logo.png') 30px 30px no-repeat;
background-size: contain;
background-position: center;
background-color: lightblue;
border: none;
color: none;
text-align: center;
width: 250px;
height: 250px;
border-radius: 100px;
}
.lit-button#dashboard-wekan-button:hover{
background-color: lightgrey;
}