Add vaultwarden
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
src: URL('assets/fonts/Poppins-Regular.ttf') format('truetype');
|
||||
}
|
||||
|
||||
/* Basic reset */
|
||||
* {
|
||||
margin: 0;
|
||||
@@ -6,18 +11,19 @@
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
font-family: Poppins;
|
||||
background: center no-repeat url('./assets/wallpapers/blobs.jpg') fixed;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 90%;
|
||||
max-width: 1200px;
|
||||
height: 100%;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.app-grid {
|
||||
@@ -29,20 +35,23 @@ body {
|
||||
}
|
||||
|
||||
.app-item {
|
||||
background: #fff;
|
||||
opacity: 0.95;
|
||||
border-radius: 12px;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
/* Use semi-transparent white for background */
|
||||
border-radius: 4px 12px;
|
||||
overflow: hidden;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
/* Ensuring the item is square */
|
||||
text-align: center;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.app-item a {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
color: #2a037c;
|
||||
display: block;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
@@ -54,7 +63,7 @@ body {
|
||||
|
||||
.app-icon-wrapper {
|
||||
width: 100%;
|
||||
height: 70%;
|
||||
height: 60%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@@ -66,7 +75,7 @@ body {
|
||||
}
|
||||
|
||||
.app-name {
|
||||
margin-top: 10px;
|
||||
margin-top: 16px;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
height: 20%;
|
||||
|
||||
Reference in New Issue
Block a user