mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-20 02:19:34 +05:30
(feature): implemented coming soon banner on blog page
This commit is contained in:
@@ -669,6 +669,21 @@ video {
|
|||||||
margin-bottom: 0.30rem;
|
margin-bottom: 0.30rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.my-auto {
|
||||||
|
margin-top: auto;
|
||||||
|
margin-bottom: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-40 {
|
||||||
|
margin-top: 10rem;
|
||||||
|
margin-bottom: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-36 {
|
||||||
|
margin-top: 9rem;
|
||||||
|
margin-bottom: 9rem;
|
||||||
|
}
|
||||||
|
|
||||||
.mb-1 {
|
.mb-1 {
|
||||||
margin-bottom: 0.25rem;
|
margin-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
@@ -813,6 +828,30 @@ video {
|
|||||||
margin-top: 2.2rem;
|
margin-top: 2.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mb-40 {
|
||||||
|
margin-bottom: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-36 {
|
||||||
|
margin-top: 9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb-44 {
|
||||||
|
margin-bottom: 11rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb-60 {
|
||||||
|
margin-bottom: 15rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-44 {
|
||||||
|
margin-top: 11rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-40 {
|
||||||
|
margin-top: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
@@ -865,6 +904,18 @@ video {
|
|||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-\[50vh\] {
|
||||||
|
height: 50vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.min-h-\[50vh\] {
|
||||||
|
min-height: 50vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.min-h-screen {
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
.w-0 {
|
.w-0 {
|
||||||
width: 0px;
|
width: 0px;
|
||||||
}
|
}
|
||||||
@@ -1190,6 +1241,10 @@ video {
|
|||||||
padding-bottom: 0.30rem;
|
padding-bottom: 0.30rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.font-cormorant {
|
.font-cormorant {
|
||||||
font-family: "Cormorant Upright", serif;
|
font-family: "Cormorant Upright", serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,8 +14,11 @@ require './core/query_functions.php';
|
|||||||
</head>
|
</head>
|
||||||
<body class="font-lexend bg-bg_primary text-accent_secondary">
|
<body class="font-lexend bg-bg_primary text-accent_secondary">
|
||||||
<?php require 'assets/_header.php';?>
|
<?php require 'assets/_header.php';?>
|
||||||
<div class="homebox w-full">
|
<div class="blogbox w-full px-4 lg:px-[4.5rem] flex flex-col items-center text-center">
|
||||||
|
<div class="mt-40 mb-60">
|
||||||
|
<h1 class="text-2xl font-bold"><i class="fa-regular fa-clock fa-spin text-accent_primary"></i> Coming Soon</h1>
|
||||||
|
<p class="text-base text-accent_three mt-3">Please be patience, Something intresting is cooking up...!!</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php require 'assets/_footer.php';?>
|
<?php require 'assets/_footer.php';?>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ require './core/query_functions.php';
|
|||||||
</head>
|
</head>
|
||||||
<body class="font-lexend bg-bg_primary text-accent_secondary">
|
<body class="font-lexend bg-bg_primary text-accent_secondary">
|
||||||
<?php require 'assets/_header.php';?>
|
<?php require 'assets/_header.php';?>
|
||||||
<div class="homebox w-full">
|
<div class="contactbox w-full px-4 lg:px-[4.5rem]">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<?php require 'assets/_footer.php';?>
|
<?php require 'assets/_footer.php';?>
|
||||||
|
|||||||
Reference in New Issue
Block a user