Add content box in the dashboard

This commit is contained in:
Kosh 2023-10-18 13:27:17 +05:30
parent 099acd0ecc
commit e41ce4945b
2 changed files with 15 additions and 4 deletions

View File

@ -25,7 +25,8 @@ body {
.container {
display: flex;
background-color: rgb(255, 255, 255,0.2);
align-items: center;
background-color: rgb(0, 255, 255,0.2);
backdrop-filter: blur(15px);
border-radius: 30px;
width: 90vw;
@ -44,4 +45,14 @@ footer{
footer p{
color: white;
text-align: center;
}
}
.contentbox {
position: absolute;
left: 30px;
background-color: rgb(255, 255, 255,0.7);
border-radius: 20px;
translate: translateX(50%);
height: 90%;
width: 500px;
}

View File

@ -9,7 +9,7 @@
<body>
<div class="wrapper">
<div class="container">
<div class="contentbox"></div>
</div>
</div>
<script src=""></script>
@ -17,4 +17,4 @@
<footer><p>© 2023 Password Manager</p></footer>
</html>
</html>