added outlook mail support

This commit is contained in:
Gitea
2025-05-13 17:37:05 +05:30
parent 424b9be1e1
commit 887f6316f6
9 changed files with 155 additions and 8 deletions

View File

@@ -36,6 +36,30 @@
background-color: #00AB55;
}
.btn-outlook {
background-color: #0078D4; /* Outlook blue */
color: white;
border: 2px solid #0078D4;
transition: background-color 0.3s ease;
}
.btn-outlook:hover {
background-color: #005a9e; /* Darker blue on hover */
border-color: #005a9e;
}
.btn-gmail {
color: white;
background-color: #D93025; /* Gmail red */
border: 2px solid #D93025;
transition: background-color 0.3s ease;
}
.btn-gmail:hover {
background-color: #A52714; /* Darker red on hover */
border-color: #A52714;
}
.iframe-min-height {
min-height: 70vh;
}