444 lines
8.3 KiB
CSS
Raw Normal View History

2023-10-19 00:42:22 +05:30
* {
box-sizing: border-box;
margin: none;
}
body {
background-color: rgb(255, 255, 255);
display: flex;
margin-top: 25px;
align-items: center;
justify-content: center;
background-image: url("../assets/bg.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.wrapper {
display: flex;
width: 90vw;
height: 90vh;
align-items: center;
justify-content: center;
}
2023-10-21 14:42:54 +05:30
.innerwrapper {
height: 90%;
width: 90%;
padding: 10px;
position: relative;
}
2023-10-19 00:42:22 +05:30
.container {
display: flex;
align-items: center;
background-color: rgb(0, 255, 255,0.2);
backdrop-filter: blur(15px);
border-radius: 30px;
2023-10-20 22:13:41 +05:30
position: relative;
2023-10-21 00:49:11 +05:30
width: 1200px;
2023-10-20 22:13:41 +05:30
height: 600px;
2023-10-19 00:42:22 +05:30
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
overflow: hidden;
2023-10-21 00:49:11 +05:30
justify-content: center;
2023-10-19 00:42:22 +05:30
}
footer{
position: fixed;
bottom: 0px;
background-color: rgb(12, 12, 12);
height: 50px;
width: 100vw;
}
footer p{
color: white;
text-align: center;
}
2023-10-21 14:42:54 +05:30
/*----------------------------------------------------------------------------------------*/
2023-10-19 00:42:22 +05:30
.contentbox {
display: flex;
position: absolute;
right: 30px;
2023-10-21 00:49:11 +05:30
bottom: 0;
2023-10-19 00:42:22 +05:30
background-color: rgb(0, 255, 255,0.3);
border-radius: 20px;
2023-10-21 00:49:11 +05:30
height: 100%;
width: 45%;
2023-10-19 00:42:22 +05:30
justify-content: center;
align-items: center;
2023-10-21 00:49:11 +05:30
max-height: 100%;
overflow: auto;
2023-10-21 14:42:54 +05:30
box-shadow: 0 0 10px;
2023-10-19 00:42:22 +05:30
}
2023-10-21 14:42:54 +05:30
/*----------------------------------------------------------------------------------------*/
2023-10-19 00:42:22 +05:30
.searchbar {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
overflow: hidden;
2023-10-21 14:42:54 +05:30
top: 15px;
2023-10-19 00:42:22 +05:30
width: 90%;
2023-10-21 14:42:54 +05:30
height: 11%;
background-color: rgb(255, 255, 255, 0.5);
border-radius: 10px;
padding: 10px;
flex-shrink: 0;
2023-10-19 00:42:22 +05:30
}
.searchbar input {
2023-10-21 14:42:54 +05:30
width: 88%;
height: 65%;
2023-10-19 00:42:22 +05:30
border: blue 2px slateblue;
box-shadow: none;
background-color: rgb(255, 255, 255, 0.5);
border-radius: 20px;
padding-left: 20px;
padding-right: 40px;
2023-10-21 14:42:54 +05:30
position: absolute;
left:20px;
2023-10-19 00:42:22 +05:30
}
2023-10-21 14:42:54 +05:30
/* .searchbar button {
2023-10-20 22:13:41 +05:30
background-image: url("../assets/search.svg");
background-size: cover;
background-position: center;
display: inline-block;
2023-10-19 00:42:22 +05:30
position: absolute;
2023-10-21 14:42:54 +05:30
top: 19%;
right: 4px;
2023-10-20 22:13:41 +05:30
width: 30px;
height: 30px;
border: none;
background-color: transparent;
cursor: pointer;
2023-10-21 14:42:54 +05:30
} */
2023-10-20 22:13:41 +05:30
.searchbar button:hover {
background-image: url(../assets/search2.svg);
}
.searchbar button:not(:hover) {
background-image: url(../assets/search.svg);
}
.searchbar:hover{
box-shadow: 0, 0, 5px;
}
.searchbar:not(:hover){
box-shadow: none;
2023-10-19 00:42:22 +05:30
}
2023-10-21 14:42:54 +05:30
/*----------------------------------------------------------------------------------------*/
2023-10-19 00:42:22 +05:30
.objcontainer {
display: flex;
flex-direction: column;
row-gap: 10px;
position: absolute;
bottom: 20px;
width: 90%;
height: 80%;
2023-10-21 14:42:54 +05:30
background-color: rgb(255, 255, 255, 0.5);
border-radius: 10px;
2023-10-19 00:42:22 +05:30
overflow: auto;
2023-10-21 00:49:11 +05:30
padding-top: 20px;
padding-bottom: 20px;
2023-10-19 00:42:22 +05:30
align-items: center;
}
.objcontainer div{
2023-10-20 22:13:41 +05:30
display: flex;
2023-10-19 00:42:22 +05:30
padding: 20px;
width: 90%;
2023-10-20 22:13:41 +05:30
height: 50px;
2023-10-19 00:42:22 +05:30
background-color: rgb(255, 255, 255, 0.5);
2023-10-20 22:13:41 +05:30
text-align: left;
2023-10-19 00:42:22 +05:30
box-shadow: 0 0 10px black;
border: rgba(0, 255, 255, 0.5) 1px solid;
overflow: hidden;
2023-10-20 22:13:41 +05:30
align-items: center;
2023-10-21 00:49:11 +05:30
flex-shrink: 0;
2023-10-21 14:42:54 +05:30
transition: width 0.3s ease, height 0.3s ease;
2023-10-19 00:42:22 +05:30
}
2023-10-21 14:42:54 +05:30
2023-10-19 00:42:22 +05:30
.objcontainer div:hover {
background-color: rgb(128, 128, 128, 0.4);
2023-10-21 14:42:54 +05:30
width: 95%;
height: 60px;
2023-10-19 00:42:22 +05:30
}
.objcontainer div:not(:hover) {
background-color: rgb(255, 255, 255, 0.5);
2023-10-21 14:42:54 +05:30
width: 90%;
height: 50px;
2023-10-19 00:42:22 +05:30
}
2023-10-20 22:13:41 +05:30
.objcontainer div button{
position: absolute;
right: 40px;
background-color: hsl(0, 0%, 100%, 0.5);
border-radius: 10px;
padding: 5px;
font-weight: bold;
box-shadow: 0 0 5px;
cursor: pointer;
2023-10-21 14:42:54 +05:30
opacity: 0;
transition: opacity 0.3s ease;
}
.objcontainer div:hover button{
opacity: 1;
}
.objcontainer div:not(:hover) button{
opacity: 0;
2023-10-20 22:13:41 +05:30
}
.objcontainer div button:hover{
background-color: rgb(128, 128, 128, 0.7);
}
.objcontainer div button:not(:hover){
background-color: hsl(0, 0%, 100%, 0.5);
}
.objcontainer div img{
width: 30px;
}
.objcontainer div p{
padding-left: 20px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
}
2023-10-21 14:42:54 +05:30
.objcontainer div:last-child {
border-radius: 0 0 10px 10px;
}
.objcontainer div:first-child {
border-radius: 10px 10px 0 0;
}
/*----------------------------------------------------------------------------------------*/
2023-10-19 00:42:22 +05:30
.querybox {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: 30px;
bottom: 40px;
background-color: rgb(0, 255, 255,0.3);
border-radius: 20px;
2023-10-21 00:49:11 +05:30
height: 70%;
width: 40%;
position: absolute;
bottom: 0;
2023-10-21 14:42:54 +05:30
box-shadow: 0 0 10px;
2023-10-19 00:42:22 +05:30
}
.infopanel {
width: 90%;
2023-10-21 00:49:11 +05:30
height: 90%;
2023-10-21 14:42:54 +05:30
background-color: rgb(255, 255, 255, 0.5);
2023-10-21 00:49:11 +05:30
border-radius: 10px;
}
2023-10-21 14:42:54 +05:30
/*----------------------------------------------------------------------------------------*/
2023-10-21 00:49:11 +05:30
.buttonpanel {
width: 90%;
height: 70%;
2023-10-21 14:42:54 +05:30
background-color: rgb(255, 255, 255, 0.5);
2023-10-19 00:42:22 +05:30
border-radius: 10px;
2023-10-21 14:42:54 +05:30
display: flex;
align-items: center;
padding: 20px;
2023-10-19 00:42:22 +05:30
}
.buttonbox {
2023-10-21 00:49:11 +05:30
display: flex;
justify-content: center;
align-items: center;
2023-10-19 00:42:22 +05:30
position: absolute;
left: 30px;
2023-10-21 00:49:11 +05:30
top: 0;
2023-10-19 00:42:22 +05:30
background-color: rgb(0, 255, 255,0.3);
border-radius: 20px;
height: 20%;
2023-10-21 00:49:11 +05:30
width: 40%;
2023-10-21 14:42:54 +05:30
box-shadow: 0 0 10px;
}
.buttonpanel p {
font-size: 30px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
}
.buttonpanel div {
position: absolute;
width: 50px;
height: 50px;
right: 50px;
display: flex;
align-items: center;
justify-content: center;
2023-10-19 00:42:22 +05:30
}
2023-10-21 14:42:54 +05:30
#addentry {
width: 40px;
height: 40px;
border-radius: 10px;
background-color: rgba(0, 146, 15, 0.7);
border: none;
box-shadow: 0 0 5px;
background-image: url(../assets/plus.svg);
background-size: 90% auto;
background-position: center;
transition: width 0.1s ease, height 0.1s ease;
}
#addentry:hover {
background-color: rgba(0, 223, 22, 0.7);
width: 45px;
height: 45px;
}
#addentry:not(:hover) {
background-color: rgba(0, 146, 15, 0.7);
width: 40px;
height: 40px;
}
/*----------------------------------------------------------------------------------------*/
2023-10-19 00:42:22 +05:30
::-webkit-scrollbar {
width: 10px;
2023-10-21 14:42:54 +05:30
border-radius: 5px;
2023-10-19 00:42:22 +05:30
}
::-webkit-scrollbar-track {
2023-10-21 14:42:54 +05:30
/* background: hsla(0, 0%, 73%, 0.7); */
background: transparent;
2023-10-19 00:42:22 +05:30
}
::-webkit-scrollbar-thumb {
2023-10-21 14:42:54 +05:30
background: hsl(0, 0%, 20%);
border-radius: 5px;
2023-10-19 00:42:22 +05:30
}
::-webkit-scrollbar-thumb:hover {
2023-10-21 14:42:54 +05:30
background: hsl(0, 0%, 17%);
2023-10-20 22:13:41 +05:30
}
2023-10-21 14:42:54 +05:30
/*----------------------------------------------------------------------------------------*/
2023-10-21 00:49:11 +05:30
#logout{
width: 40px;
height: 40px;
position: absolute;
top: 20px;
right: 20px;
border-radius: 10px;
background-image: url(../assets/logout2.svg);
background-size: cover;
background-color: transparent;
border: none;
}
#logout:hover{
background-image: url(../assets/logout2.svg);
opacity: 0.8;
}
#logout:not(:hover){
background-image: url(../assets/logout.svg);
opacity: 0.7;
}
2023-10-21 14:42:54 +05:30
/*----------------------------------------------------------------------------------------*/
#entrycontainer {
position: absolute;
width: 100%;
height: 100%;
background-color: hsl(0, 0%, 100%, 10%);
justify-content: center;
align-items: center;
backdrop-filter: blur(20px);
}
.hidden {
display: none;
}
.addentrydiv {
2023-10-21 00:49:11 +05:30
position: relative;
2023-10-21 14:42:54 +05:30
width: 50%;
height: 60%;
background-color: rgb(255, 255, 255, 0.8);
border-radius: 20px;
}
.addentrydiv div{
display: flex;
position: absolute;
top: 20px;
right: 20px;
justify-content: center;
align-items: center;
width: 35px;
height: 35px;
2023-10-21 00:49:11 +05:30
}
2023-10-21 14:42:54 +05:30
#backbtn {
width: 30px;
height: 30px;
background-color: rgb(255, 0, 0, 0.8);
background-image: url(../assets/x.svg);
background-size: 50%;
background-position: center;
background-repeat: no-repeat;
border: none;
box-shadow: 0 0 5px;
border-radius: 20px;
transition: width 0.1s ease, height 0.1s ease;
}
#backbtn:hover {
width: 35px;
height: 35px;
background-color: rgba(226, 0, 0, 0.8);
}
#backbtn:not(:hover) {
width: 30px;
height: 30px;
background-color: rgb(255, 0, 0, 0.8);
}
/*----------------------------------------------------------------------------------------*/
2023-10-20 22:13:41 +05:30
@media (max-width: 860px) {
.container{
position: fixed;
width: 774px;
}
2023-10-21 00:49:11 +05:30
}
2023-10-21 14:42:54 +05:30