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 { .container {
display: flex; 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); backdrop-filter: blur(15px);
border-radius: 30px; border-radius: 30px;
width: 90vw; width: 90vw;
@ -45,3 +46,13 @@ footer p{
color: white; color: white;
text-align: center; 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> <body>
<div class="wrapper"> <div class="wrapper">
<div class="container"> <div class="container">
<div class="contentbox"></div>
</div> </div>
</div> </div>
<script src=""></script> <script src=""></script>