1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 21:43:06 +05:30

(feat): added phpdotenv and phpmailer library

This commit is contained in:
2023-12-10 21:15:06 +05:30
parent f7ecbcf334
commit cec8a42a52
369 changed files with 40737 additions and 3 deletions

View File

@@ -522,6 +522,48 @@ video {
--tw-backdrop-sepia: ;
}
.container {
width: 100%;
}
@media (min-width: 640px) {
.container {
max-width: 640px;
}
}
@media (min-width: 768px) {
.container {
max-width: 768px;
}
}
@media (min-width: 1024px) {
.container {
max-width: 1024px;
}
}
@media (min-width: 1280px) {
.container {
max-width: 1280px;
}
}
@media (min-width: 1536px) {
.container {
max-width: 1536px;
}
}
.visible {
visibility: visible;
}
.static {
position: static;
}
.fixed {
position: fixed;
}
@@ -891,6 +933,14 @@ video {
margin-top: 30vh;
}
.block {
display: block;
}
.inline {
display: inline;
}
.flex {
display: flex;
}
@@ -903,6 +953,10 @@ video {
display: grid;
}
.contents {
display: contents;
}
.hidden {
display: none;
}
@@ -1545,6 +1599,14 @@ video {
font-weight: 300;
}
.uppercase {
text-transform: uppercase;
}
.lowercase {
text-transform: lowercase;
}
.text-\[rgb\(22\2c _163\2c _74\)\] {
--tw-text-opacity: 1;
color: rgb(22 163 74 / var(--tw-text-opacity));
@@ -1722,6 +1784,10 @@ video {
scrollbar-width: none;
}
.\[hostname\:port\] {
hostname: port;
}
.last\:mb-3:last-child {
margin-bottom: 0.75rem;
}