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
162 changes: 162 additions & 0 deletions Agro-product distribution system/AGR.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
.avatar
{
position:absolute;
width:80px;
height:80px;
border-radius:50%;
overflow:hidden;
top:calc(-80px/2);
left:calc(50% - 40px);
}

#myInput
{
border: none;
border-bottom: 2px solid green;
background:transparent;
color:white;
margin-top:5%;
}
.user
{
height:20px;
width:20px;
margin-left:5px;
margin-top:5px;

}

.password
{
height:23px;
width:23px;
}


.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}




.verify
{

margin-top:0%2;
}

.main
{
height:100%;
min-width:100%;
background-repeat:no-repeat;
background-image:url('background.jpg');
background-size:cover;
}
.form-area
{

margin:0%;
padding-left:0%;
margin-top:75px;
width:300px;
height:555px;
box-sizing:border-box;
background:rgba(0,0,0,0.6);
padding:40px;
-webkit-box-shadow: 14px 18px 29px 10px rgba(0,0,0,0.76);
-moz-box-shadow: 14px 18px 29px 10px rgba(0,0,0,0.76);
box-shadow: 14px 18px 29px 10px rgba(0,0,0,0.76);
}
.form-area h3
{
text-align:center;
margin-bottom:30px;
color:#080808;
}
.form-area p
{
color:#a09999;
margin:0;
padding:0;
font-weight:bold;

}
.form-area input, select
{
margin-bottom:20px;
width:100%;
}
.form-area input[type=email],
.form-area input[type=password]
{
border:none;
border-bottom:1px solid #ffffff;
background-color:transparent;
outline:none;
height:40px;
color:#ffffff;
display:16px;
}
::placehiolder
{
color:#ffffff;
}

.form-area input[type=submit]
{
border:none;
height:40px;
outline:none;
color:#ffffff;
font-size:15px;
background-color:#232f3e;
cursor:pointer;
border-radius:20px;
}
.form-area input[type=submit]:hover
{
background-color:tomato;
color:#ffffff;
}
.form-area a
{
color:#ffffff;
font-size:14px;
font-weight:bold;
}
.responsive
{
height:auto;
width:100%;
}

@media screen and (max-width:200px){
td{
width:0.01%;
white-space:nowrap;
height:50%;
}
row{
width:0.01%;
white-space:nowrap;
height:50%;
}
}
Binary file added Agro-product distribution system/Agriculture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
160 changes: 160 additions & 0 deletions Agro-product distribution system/Reg.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
.avatar
{
position:absolute;
width:80px;
height:80px;
border-radius:50%;
overflow:hidden;
top:calc(-80px/2);
left:calc(50% - 40px);
}

#myInput
{
border: none;
border-bottom: 2px solid green;
background:transparent;
color:white;
margin-top:5%;
}
.user
{
height:20px;
width:20px;
margin-left:5px;
margin-top:5px;

}

.password
{
height:23px;
width:23px;
}


.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}




.verify
{

margin-top:0%2;
}

.main
{
height:100%;
min-width:100%;
background-repeat:no-repeat;
background-image:url('registration.jpg');
background-size:cover;
}
.form-area
{

margin-top:50px;
width:960px;
height:555px;
box-sizing:border-box;
background:rgba(0,0,0,0.6);
padding:90px;
-webkit-box-shadow: 14px 18px 29px 10px rgba(0,0,0,0.76);
-moz-box-shadow: 14px 18px 29px 10px rgba(0,0,0,0.76);
box-shadow: 14px 18px 29px 10px rgba(0,0,0,0.76);
}
.form-area h3
{
text-align:center;
margin-bottom:30px;
color:#080808;
}
.form-area p
{
color:#a09999;
margin:0;
padding:0;
font-weight:bold;

}
.form-area input, select
{
margin-bottom:20px;
width:100%;
}
.form-area input[type=email],
.form-area input[type=password]
{
border:none;
border-bottom:1px solid #ffffff;
background-color:transparent;
outline:none;
height:40px;
color:#ffffff;
display:16px;
}
::placehiolder
{
color:#ffffff;
}

.form-area input[type=submit]
{
border:none;
height:40px;
outline:none;
color:#ffffff;
font-size:15px;
background-color:#232f3e;
cursor:pointer;
border-radius:20px;
}
.form-area input[type=submit]:hover
{
background-color:tomato;
color:#ffffff;
}
.form-area a
{
color:#ffffff;
font-size:14px;
font-weight:bold;
}
.responsive
{
height:auto;
width:100%;
}

@media screen and (max-width:200px){
td{
width:0.01%;
white-space:nowrap;
height:50%;
}
row{
width:0.01%;
white-space:nowrap;
height:50%;
}
}
Loading