Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"json.maxItemsComputed": 15000
}
55 changes: 55 additions & 0 deletions css/about_us.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
main{
margin: 40px 20px;
}
main h1{
text-align: center;
margin: 50px;
font-size: 80px;
color: #06BDBD;
text-shadow: 2px 2px 7px #f93a3afa;
}
main section{
margin: 70px 40px;
}
main section div{
display: inline-block;
}
main section:last-child{
margin: 70px 243px;
}
.card {
box-shadow: 6px 4px 8px 6px rgb(0 0 0 / 20%);
max-width: 300px;
text-align: center;
margin: 20px 50px;
}
.card:hover{
box-shadow: 6px 4px 8px 6px rgb(224 14 14 / 20%);
transform: scale(1.1);
}
.card h3{
font-size: 26px;
color: white;
background: #f93a3afa;
padding: 15px;
margin-top: -4px;
}
.card h4 .fa-github , .fa-linkedin{
margin-right: 15px;
font-size: 40px;
}
.card h4 .fa-linkedin:hover{
color:#0A66C2;
}
.card a {
text-decoration: none;
font-size: 22px;
color: black;
}
.card img{
width: 100%;
height: 350px;
}
footer{
clear: both;
}
176 changes: 176 additions & 0 deletions css/header_footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
.bar {
/* padding: 39px 0px 39px 580px; */
padding: 39px 0px 39px 480px;

}
.bar .bar-item{
width:100%;
font-size: 24px;
color: wheat;
text-decoration-line: none;
padding: 30px;
}
.bar .bar-item:hover{
color: #e25822;
}
header{
height: 100px;
background: #191717;
}
header img{
float: left;
width: 10%;
height: 100px;
margin-bottom: 20px;
}
header .main-logo{

position: absolute;
margin-top: 35px;
margin-left: 130px;
font-size: 30px;
color: #e25822;
}
main{
clear: both;
}
/* ////footer */
body {
font-size: 16px;
font-family: 'Montserrat', sans-sherif;
margin: 0;
padding: 0;
background-color: #faebd759;
}
.content {
max-width: 600px;
margin: 0 auto;
padding: 0 20px;
}
.hero {
position: relative;
color: white;
height: 87vh;
display: flex;
align-items: center;
overflow: hidden;
}
.hero .nav-container , .nav-container ul {
display: flex;
flex-direction: row;
}
.hero .contact{
display: flex;
flex-direction: column;
margin-left: -20px;
}
.hero .main_contact{
display: flex;
flex-direction: column;
margin-right: 100px;
}
.hero .contact a{

font-size: 20px;
color: rgb(247 208 185);
margin: 5px auto;
text-decoration-line: none;
}
.footer-nav{
margin-left: -100px;
padding-top: 40px;
}
.hero .nav-container ul{
position: absolute;
margin: 20px 20px 30px 10px;
display: flex;
flex-direction: column;
}
.hero .nav-container li{
margin: 0px 20px;
margin: 10px 20px;
}
.hero .nav-container ul a{
color: rgb(247 208 185);
text-decoration-line: none;
font-size: 25px;
}
.hero .nav-container ul a:hover{
color: #e25822;
}
.hero .nav-container p{
margin-top: 140px;
padding-left: 350px;
}
.hero h2 {
position: relative;
z-index: 1;
font-size: 25px;
text-align: center;
margin: 0 0 10px;
line-height: 1;
color: rgb(247 208 185); }
.hero p {
position: relative;
z-index: 1;
font-size: 35px;
line-height: 1.4;
margin-left: -330px;
color: #ffa242;
}
.hero .footer-nav p{
color: #e25822;
}
.hero .copy{
font-size: 20px;
margin-top: 50px;
margin-left:0px ;
text-align: center;
}
.hero nav,.contact,img{
position: relative;
z-index: 1;
}
.hero img{
width: 70%;
margin-left:-20px;
}
/* ========================= */
.waves {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 200px;
background-color: #ffa242;
box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
transition: 500ms;
}
.waves::before,
.waves::after {
content: '';
position: absolute;
width: 300vw;
height: 300vw;
top: -65vw;
left: 50%;
transform: translate(-50%, -75%);
}
.waves::before {
border-radius: 44%;
background: rgb(12, 10, 10);
animation: waves 8s linear infinite;
}
.waves::after {
border-radius: 44%;
background: rgba(12, 10, 10, 0.5);
animation: waves 15s linear infinite;
}
@keyframes waves {
0% {
transform: translate(-50%, -75%) rotate(0deg);
}
100% {
transform: translate(-50%, -75%) rotate(360deg);
}
}
Loading