Skip to content

Commit

Permalink
Updating Scripts contributors on Website with implementation of searc…
Browse files Browse the repository at this point in the history
…h bar (#1030)
  • Loading branch information
Ayushjain2205 authored May 18, 2021
1 parent 038e180 commit 79ed300
Show file tree
Hide file tree
Showing 17 changed files with 910 additions and 2,458 deletions.
48 changes: 28 additions & 20 deletions website/home.css → css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ header {
}
.image-part {
width: auto;
background: url(AmazingPyScripts.jpeg) repeat 100% 50%;
background: url(../images/AmazingPyScripts.jpeg) repeat 100% 50%;
background-size: cover;
border-radius: 30%;
height: 250px;
Expand Down Expand Up @@ -96,56 +96,64 @@ header {
text-align: center;
}

.container-fluid{
.container-fluid {
background-color: rgb(74, 80, 75);
}
.nav-link{
.nav-link {
font-size: 22px;
font-weight: 600;
margin-right: 20px;
/* text-decoration: underline; */
color: aliceblue!important;
color: aliceblue !important;
}

.nav-link:hover{

.nav-link:hover {
font-weight: 600;
color: rgb(119, 241, 63)!important;
color: rgb(119, 241, 63) !important;
}


.navbar-toggler-icon{
.navbar-toggler-icon {
background-color: white;
}

.navbar-light .navbar-toggler{
.navbar-light .navbar-toggler {
background-color: aliceblue;


}
a.nav-link{
a.nav-link {
font-size: x-large;
}

.navbar>.container, .navbar>.container-fluid{
.navbar > .container,
.navbar > .container-fluid {
padding-top: 15px;
padding: 0 10px;
padding-top: 2px;

}

.d-flex{
.d-flex {
margin-bottom: 20px;
}
.navbar-toggler{
.navbar-toggler {
margin-bottom: 10px;
margin-top: 5px;
width: 52px;
}
.fa-python:before {
content: "\f3e2";
content: '\f3e2';
font-size: x-large;
}
.navbar{
.navbar {
padding-left: 10px;
}
}

.contributor-name {
padding: 15px 0 15px 15px;
}

.contributor-card {
width: 180px !important;
}

.row {
width: 100% !important;
}
218 changes: 218 additions & 0 deletions css/page-contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
body {
font-family: 'Roboto', sans-serif !important;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.mainscreen {
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
background-color: #dfdbe5;
}

/*We divided the main part in two parts one is top part
and other is bottom form part*/

/*Styling top part*/
.toppart {
display: flex;
flex-direction: column;
padding: 3rem 10rem 10rem;
background-image: url('../images/python_background.png');
}
.formpart hr {
border: none;
height: 3px;
background-color: #47b2e4;
width: 500px;
margin: 10px auto;
}
.subText {
background: #3a2f2f73;
border-radius: 1rem;
padding: 2rem;
margin-top: 1rem;
}
.toppart .logo {
width: 6rem;
border-radius: 100%;
vertical-align: middle;
margin-right: 1rem;
}
.toppart h1 {
color: white;
font-size: 2.5rem;
font-weight: 600;
margin: 0 auto 2rem;
}
.toppart p {
margin: 0;
font-size: 1.3rem;
color: #eaeaea;
font-weight: 400;
line-height: 1.5;
}

/*Top part styling completed*/

/*Styling bottom part*/

/*Styling of box*/
.bottompart {
width: 60rem;
margin: 0 auto;
background: white;
position: relative;
top: -7rem;
border-radius: 1.5rem;
box-shadow: 4px 3px 20px #3535358c;
display: flex;
flex-direction: row;
}

/*Styling of image part*/

.imgpart {
background: #0d384d;
width: 25rem;
display: inline-flex;
align-items: center;
justify-content: center;
border-top-left-radius: 1.5rem;
border-bottom-left-radius: 1.5rem;
}
.subImg {
width: 18rem;
height: 18rem;
border-radius: 100%;
}

/*Styling form part starts here*/
.formpart {
width: 35rem;
border-bottom-right-radius: 1.5rem;
border-top-right-radius: 1.5rem;
padding: 2rem 2rem 4rem;
display: block;
}
h2 {
color: #47b2e4;
font-size: 1.9rem;
margin-bottom: 2rem;
font-weight: 600;
}
label {
font-size: 1.2rem;
color: grey;
font-weight: 400;
display: block;
margin: 0.5rem 0;
}
.inputbox {
width: 26rem;
padding: 0.5rem;
border: 2px solid #b9b6b6;
margin-bottom: 1rem;
border-radius: 0.3rem;
font-family: 'Roboto', sans-serif;
color: #615a5a;
font-size: 1.1rem;
font-weight: 500;
}

/*Styling checkbox agreement line*/
input.agree {
width: 0.8rem;
height: 0.8rem;
}
label.agree {
font-size: 0.9rem;
display: inline-block;
}

/*Styling submit button */
.submitbtn {
width: 13rem;
padding: 0.7rem;
font-size: 1.2rem;
color: white;
background: #47b2e4;
border: 0;
outline: 0;
border-radius: 0.4rem;
cursor: pointer;
transition: 0.4s;
}

/*Styling submit button hover state*/
.submitbtn:hover {
transform: scale(1.02) translateY(-2px);
box-shadow: 3px 3px 6px #38373785;
}
/*Form styling complted*/

@media only screen and (max-width: 1000px) {
.toppart {
padding: 3rem 2rem 10rem;
}
.bottompart {
flex-direction: column;
width: auto;
}
.imgpart {
width: 100%;
border-top-right-radius: 1.5rem;
border-bottom-left-radius: 0;
}
.subImg {
width: 10rem;
height: 10rem;
margin: 1rem;
}
.formpart {
width: auto;
}
}
@media only screen and (max-width: 600px) {
.inputbox {
width: 16rem;
}
.options {
width: 16rem;
}
.eachoption {
display: block;
width: 100%;
}
.links {
display: none;
}
}

a.nav-link {
font-size: x-large;
}

.container-fluid {
background-color: rgb(74, 80, 75);
}
.nav-link {
font-size: 22px;
font-weight: 600;
margin-right: 20px;
/* text-decoration: underline; */
color: aliceblue !important;
}

.navbar > .container,
.navbar > .container-fluid {
padding-top: 15px;
padding: 0 10px;
padding-top: 2px;
}

.nav-link:hover {
color: rgb(225, 250, 86) !important;
}
Loading

0 comments on commit 79ed300

Please sign in to comment.