Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Covenant11 authored Jun 23, 2024
1 parent e76de4e commit 4e480ed
Show file tree
Hide file tree
Showing 4 changed files with 220 additions and 0 deletions.
Binary file added template/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added template/BACK.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
157 changes: 157 additions & 0 deletions template/trifactor.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
*{
margin: 0px;
padding: 0px;

}
body{
background-color: #e3f2eb;
}
.Main{
text-align: center;
margin-top: 200px;

}
.tri{
font-family: sans-serif;
font: bold;
font-size: 135px;
margin: 22px -1px;
color: #2c3230;
}
.p1{
font-size: 20px;
font-family: sans-serif;

}
.p2{
font-size: 20px;
font-family: sans-serif;
}
.p3{
font-size: 20px;
font-family: sans-serif;
}
.get{
margin-top: 22px;
padding: 10px 27px 10px 27px;
border-radius: 50px;
border: none;
font-size: 18px;
background-color: #253f34;
color: #e3f2eb;
}
.get:active{
background-color: #e3f2eb;
color: #2c3230;
font-size: 18px;
}
.a2{
text-decoration:none ;
color: #e3f2eb;
}
.a2:active{
color: #253f34;
background-color: #b9cfc4;
}
.con1{
margin-left: 20px;
margin-top: 70px;

}
.h1{
margin-left: 45px;
}
.main1{
display: flex;


}
.f2{
margin-left: 50px;
margin-top: 70px;
}
.p5{
margin-top: 20px;

}
.p6{
margin-top: 40px;
}
.in1{
background-color: #b9cfc4;
border: none;
width: 200px;
height: 35px;
margin-top: 5px;
border-radius: 4px;
padding-left: 5px;
}
#t1{
background-color: #b9cfc4;
border: none;
width: 200px;
height: 35px;
margin-top: 5px;
border-radius: 4px;
padding-left: 10px;

}
.drop{
padding-top: 10px;
font-size: 17px;
font-family: sans-serif;

}
.drop:hover{
background-color: #253f34;
}

.f1{
margin-top: 95px;
background-color: #b9cfc4;
width: 400px;
height: 320px;
border-radius: 5px;

}

.N,.in2{
margin-left: 15px;
}

.in2{
width: 365px;
height: 75px;
background-color: #b9cfc4;
border-top: none;
border-left: none;
border-right: none;
border-color: black;
border-style: light;
}
.btn1{
margin-left: 375px;
margin-top: 20px;
margin-bottom: 20px;
padding: 6px;
width: 400px;
background-color: #253f34;
color: #b9cfc4;
font-family: sans-serif;
font-size: 20px;
border-radius: 5px;
border: none;

}
.btn1:active{
background-color:#b9cfc4;
color: #2c3230;
}
.back{
margin-left: 25px;

}
.imgg{
width: 30px
;
}
63 changes: 63 additions & 0 deletions template/trifactor2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="trifactor.css">

<title>Document</title>
</head>
<body class="bod1">
<div class="back">
<a href="trifactor.html"><img src="BACK.png" alt="back" class="imgg"></a>
</div>
<div class="con1">
<h1 class="h1">
TriFactor
</h1>

<div class="main1">
<form action="#" class="f2">
<P class="p4">
Supply soil data and choose your prefered method:
</P>
<p class="p5">
Angle of friction in degrees(.):
</p>
<input type="text" class="in1">
<p class="p6">
Select your prefered method:
</p>
<label for="" class="label">
<select name="Title1" id="t1">
<option></option>
<option value="Terzaghi" class="drop">Terzaghi</option>
<option value="Meyerhof" class="drop">Meyerhof</option>
<option value="Vesic" class="drop">Vesic</option>
<option value="Hansen" class="drop">Hansen</option>
<option value="Eurocode 7" class="drop">Eurocode 7 </option>
</select>

</label>
</form>
<form action="#" class="f1">
<label for="Nc" class="N nc"> N<sub>c</sub></label>
<br>
<input type="text" class="in2" disabled>
<br>
<label for="Nq" class="N">N<sub>q</sub></label>
<br>
<input type="text" class="in2" disabled>
<br>
<label for="Ny" class="N">N<sub>y</sub></label>
<br>
<input type="text" disabled class="in2">
</div>
<button class="btn1">CALCULATE</button>

</form>

</div>

</body>
</html>

0 comments on commit 4e480ed

Please sign in to comment.