Add files via upload

This commit is contained in:
AkhilBarthwal005 2020-10-25 13:03:32 +05:30 committed by GitHub
parent 8dcd104e91
commit f939cb457e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 180 additions and 0 deletions

View File

@ -0,0 +1,68 @@
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital@1&display=swap');
*{
margin: 0;
padding: 0;
}
.firstSection{
height: 90vh;
/* display: flex; */
}
.main-box{
display: flex;
justify-content: center;
align-items: center;
color: white;
max-width: 75%;
height: 75%;
margin: auto;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.firstHalf{
display: flex;
flex-direction: column;
justify-content: center;
width: 70%;
}
.secondHalf{
width: 30%;
}
.secondHalf img{
display: block;
margin: auto;
width: 50%;
border: 2px solid white;
border-radius: 94px;
}
.text-big{
font-size: 45px;
padding: 12px 0;
font-weight: bold;
}
.text-small{
font-size: 20px;
}
.btn{
font-size: 16px;
padding: 5px 15px;
border: 2px solid white;
border-radius: 25px;
background: none;
color: white;
margin: 10px 5px;
outline: none;
cursor: pointer;
font-size: 18px;
font-family: 'Ubuntu', sans-serif;
}
.btn-dark{
color: black;
border: 2px solid gray;
}
.btn:hover{
background-color: rgb(194, 189, 189,0.54);
}
.btn-small{
padding: 3px 10px;
vertical-align: middle;
font-size: 15px;
}

View File

@ -0,0 +1,112 @@
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital@1&display=swap');
*{
margin: 0;
padding: 0;
}
.smallnav{
display: flex;
align-items: center;
background-color: #e8e8e4;
}
.smallnav-info{
display: flex;
padding: 7px 20px;
margin: 0 60px;
}
.smallnav-info i{
margin: 0px 6px;
}
.icon{
display: flex;
position: absolute;
right: 5%;
}
.icondesign{
display: inline;
margin: 0px 6px;
}
.logo{
width: 20%;
display: flex;
justify-content: center;
align-items: center;
}
.logo img{
/* height: ; */
width: 75%;
/* border: 2px solid white; */
/* border-radius: 50px; */
border: none;
}
.logo{
width: 20%;
display: flex;
justify-content: center;
align-items: center;
}
.logo img{
/* height: ; */
width: 75%;
/* border: 2px solid white; */
/* border-radius: 50px; */
border: none;
}
.navbar{
display: flex;
align-items: center;
justify-content: center;
position: sticky;
top: 0;
cursor: pointer;
}
.nav-list{
display: flex;
align-items: center;
width: 70%;
}
.nav-list li{
list-style: none;
padding: 22px 20px;
}
.listdesign{
text-decoration: none;
color: white;
font-size: 18px;
font-family: 'Ubuntu', sans-serif;
}
.listdesign:hover{
color: gray;
}
.right-nav{
width: 30%;
text-align: right;
}
#search{
padding: 5px;
border: 2px solid gray;
border-radius: 20px;
outline: none;
}
.background{
background: rgba(0, 0, 0, 0.7) url('../img/bg.jpg');
background-size: cover;
background-blend-mode: darken;
}
.btn{
font-size: 16px;
padding: 5px 15px;
border: 2px solid white;
border-radius: 25px;
background: none;
color: white;
margin: 10px 5px;
outline: none;
cursor: pointer;
font-size: 18px;
font-family: 'Ubuntu', sans-serif;
}
.btn-small{
padding: 3px 10px;
vertical-align: middle;
font-size: 15px;
}