Added Create Custom, Random, Gmail Generation

This commit is contained in:
Gitea
2025-04-25 17:43:35 +05:30
parent b799ac3f9a
commit 9aa1b3ab8e
39 changed files with 1867 additions and 136 deletions

View File

@@ -1,3 +1,60 @@
.art {
color: orange;
.inbox-btn {
background-color: #F14743;
color: white;
transition: background-color 0.3s ease;
}
.inbox-btn:hover {
background-color: #f72a25;
}
.btn-primary {
color: white;
background-color: #4361ee;
}
.btn-warning {
color: white;
background-color: #e2a03f;
}
.btn-success {
background-color: #00AB55;
color: white;
}
.inbox-list {
margin-bottom: 10px;
}
.inbox-new {
background-color: #00AB55;
}
.iframe-min-height {
min-height: 70vh;
}
@keyframes slide-in {
from {
transform: translateY(-1rem);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes progress {
from {
width: 100%;
}
to {
width: 0%;
}
}
.animate-slide-in {
animation: slide-in 0.3s ease-out;
}
.animate-progress {
animation: progress 4s linear forwards;
}