Inital Commit

This commit is contained in:
2023-01-28 22:01:59 +01:00
commit 116dc1dcb0
16 changed files with 1980 additions and 0 deletions

60
public/css/button.css Normal file
View File

@@ -0,0 +1,60 @@
/*Genral Button Style*/
.btn {
display: inline-block;
align-items: center;
background: none;
border: 1px solid #bdbdbd;
height: 48px;
letter-spacing: 0.25px;
border-radius: 24px;
cursor: pointer;
}
.btn:focus {
outline: none;
}
.btn .mdi {
margin-right: 5px;
margin-left: 5px;
}
/*Delete Button Style*/
.btn-delete {
font-size: 16px;
color: red;
}
.btn-delete:hover, .btn-delete:focus {
background-color: var(--btn-hover-bg-color);
}
.btn-delete > .mdi-delete-empty {
display: none;
}
.btn-delete:hover > .mdi-delete-empty {
display: inline-block;
}
.btn-delete:hover > .mdi-delete {
display: none;
}
/*Info Button Style*/
.btn-info {
font-size: 16px;
color: skyblue;
}
.btn-info > .mdi-information {
display: none;
}
.btn-info:hover > .mdi-information {
display: inline-block;
}
.btn-info:hover > .mdi-information-outline {
display: none;
}