-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19ca545
commit 7541906
Showing
12 changed files
with
11,939 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,331 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"); | ||
|
||
* { | ||
font-family: "Poppins", sans-serif; | ||
} | ||
|
||
html{ | ||
scroll-behavior: smooth; | ||
} | ||
|
||
body{ | ||
color: #4a4a4a; | ||
font-size: 1em; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
height:100%; | ||
width:100%; | ||
} | ||
|
||
|
||
.blurple { | ||
color: #7289da; | ||
} | ||
|
||
.bg-base { | ||
background-color: #1a2634 ; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
#backtotop { | ||
background-color: #7289da; | ||
width: 50px; | ||
height: 50px; | ||
text-align: center; | ||
border-radius: 4px; | ||
position: fixed; | ||
bottom: 30px; | ||
right: 23px; | ||
transition: background-color 0.3s, opacity 0.5s, visibility 0.5s; | ||
opacity: 0; | ||
visibility: visible; | ||
z-index: 99; | ||
} | ||
|
||
#backtotop:hover { | ||
cursor: pointer; | ||
background-color: #333; | ||
} | ||
|
||
#backtotop:active { | ||
background-color: #555; | ||
} | ||
|
||
#backtotop.show { | ||
opacity: 0.4; | ||
visibility: visible; | ||
} | ||
|
||
.navbar-item, | ||
.navbar-link { | ||
-moz-transition: all 0.2s ease-in; | ||
-o-transition: all 0.2s ease-in; | ||
-webkit-transition: all 0.2s ease-in; | ||
transition: all 0.2s ease-in; | ||
} | ||
|
||
.navbar-item:hover { | ||
background-color: transparent !important; | ||
|
||
} | ||
|
||
.navbar-link:hover { | ||
background-color: transparent !important; | ||
|
||
} | ||
|
||
.navbar-menu { | ||
animation: navAnimOpen 0.2s ease-in-out; | ||
} | ||
|
||
@keyframes navAnimOpen { | ||
0% { | ||
display: none; | ||
opacity: 0; | ||
max-height: 0; | ||
} | ||
1% { | ||
display: block; | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
max-height: 396px; | ||
} | ||
from { | ||
opacity: 0; | ||
transform: translateY(-5px); | ||
} | ||
to { | ||
opacity: 1; | ||
transform: translateY(0px); | ||
} | ||
} | ||
|
||
nav, | ||
.navbar-menu { | ||
background-color: #1a2634 !important; | ||
|
||
} | ||
|
||
.navbar-item.nav-dark, | ||
.navbar-link.nav-dark { | ||
color: #363636 !important; | ||
} | ||
|
||
.navbar-item, | ||
.navbar-link { | ||
color: white !important; | ||
} | ||
|
||
nav.nav-w { | ||
background: #fff !important; | ||
box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1) !important; | ||
} | ||
|
||
.nav-w { | ||
background: #fff !important; | ||
box-shadow: 100px 2px 10px rgba(0, 0, 0, 0.1) !important; | ||
} | ||
|
||
.mb-12 { | ||
margin-bottom: 6rem; | ||
} | ||
|
||
.mt-12 { | ||
margin-top: 6rem; | ||
} | ||
|
||
.ml-12 { | ||
margin-left: 6rem; | ||
} | ||
|
||
.mr-12 { | ||
margin-right: 6rem; | ||
} | ||
|
||
.img-col-ml-13 { | ||
margin-left: 13rem; | ||
} | ||
|
||
.img-col-mr-13 { | ||
margin-right: 13rem; | ||
} | ||
|
||
.has-image-centered { | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.line { | ||
background: #7289da; | ||
background: #7289da; | ||
width: 150px; | ||
height: 5px; | ||
} | ||
|
||
.line2 { | ||
background: #00d1b2; | ||
background: #00d1b2; | ||
width: 75px; | ||
height: 5px; | ||
} | ||
|
||
.line-center { | ||
margin: 0 auto; | ||
} | ||
|
||
|
||
|
||
.title.lined { | ||
margin-bottom: 0px; | ||
} | ||
|
||
.vert-move { | ||
-webkit-animation: mover 1s infinite alternate; | ||
animation: mover 1s infinite alternate; | ||
} | ||
|
||
.vert-move2 { | ||
-webkit-animation: mover 0.5s infinite alternate; | ||
animation: mover 0.5s infinite alternate; | ||
} | ||
|
||
@-webkit-keyframes mover { | ||
0% { | ||
transform: translateY(0); | ||
} | ||
100% { | ||
transform: translateY(-10px); | ||
} | ||
} | ||
|
||
.button.is-blurple { | ||
|
||
border-color: transparent; | ||
color: #fff; | ||
} | ||
|
||
.single-feature { | ||
position: relative; | ||
z-index: 5; | ||
} | ||
|
||
.shape-right { | ||
position: absolute; | ||
top: -40px; | ||
right: 0; | ||
width: 40%; | ||
height: 100%; | ||
z-index: -1; | ||
opacity: 30%; | ||
} | ||
|
||
.shape-right img { | ||
width: 100%; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
.shape-right | ||
{ | ||
display: none; | ||
} | ||
} | ||
|
||
.shape-left { | ||
position: absolute; | ||
top: -80px; | ||
left: 90px; | ||
width: 35%; | ||
height: 100%; | ||
z-index: -1; | ||
opacity: 30%; | ||
} | ||
|
||
.shape-left img { | ||
width: 100%; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
.shape-left { | ||
display: none; | ||
} | ||
} | ||
|
||
.dropdown { | ||
float: left; | ||
overflow: hidden; | ||
} | ||
|
||
/* Dropdown button */ | ||
.dropdown .dropbtn { | ||
font-size: 16px; | ||
border: none; | ||
outline: none; | ||
color: white; | ||
padding: 14px 16px; | ||
background-color: inherit; | ||
font-family: inherit; /* Important for vertical align on mobile phones */ | ||
margin: 0; /* Important for vertical align on mobile phones */ | ||
} | ||
|
||
/* Add a red background color to navbar links on hover */ | ||
.navbar a:hover, .dropdown:hover .dropbtn { | ||
background-color: rgba(255, 255, 255, 0); | ||
} | ||
|
||
/* Dropdown content (hidden by default) */ | ||
.dropdown-content { | ||
display: none; | ||
position: absolute; | ||
|
||
min-width: 160px; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
/* Links inside the dropdown */ | ||
.dropdown-content a { | ||
float: none; | ||
color: black; | ||
padding: 12px 16px; | ||
text-decoration: none; | ||
display: block; | ||
text-align: left; | ||
} | ||
|
||
/* Add a grey background color to dropdown links on hover */ | ||
.dropdown-content a:hover { | ||
background-color: #ddd; | ||
} | ||
|
||
/* Show the dropdown menu on hover */ | ||
.dropdown:hover .dropdown-content { | ||
display: block; | ||
} | ||
|
||
/* the scrollbar */ | ||
::-webkit-scrollbar { | ||
width: 10px; | ||
} | ||
|
||
/* Track */ | ||
::-webkit-scrollbar-track { | ||
background: #050505; | ||
|
||
} | ||
|
||
/* Handle */ | ||
::-webkit-scrollbar-thumb { | ||
background: #7187D8; | ||
border-radius: 4px; | ||
} | ||
|
||
/* Handle on hover */ | ||
::-webkit-scrollbar-thumb:hover { | ||
background: #7187D8; | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
7541906
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
assistant-web – ./
assistant-web-ebon.vercel.app
assistant-web-sayad-uddin-tahsin.vercel.app
assistant-web-git-main-sayad-uddin-tahsin.vercel.app