Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
venerable-hunter authored Apr 11, 2024
1 parent 8b58e1b commit 4819095
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 0 deletions.
Binary file added download (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 download.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 images.jpg
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 images.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions pricingPanel.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing Panel</title>
<!-- here i'm including giigle fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="panel">
<div class="sec1">
<img src="download.png" alt="">
<H3>Personal</H3>
<ul>
<li>custom domains</li>
<li>sleeps after 30 mins of inactivity</li>

</ul>
<h4>free</h4>
<button>sign up</button>
</div>


<div class="sec2">
<img src="download (1).png" alt="">
<h3>small team</h3>
<ul>
<li>Never sleeps</li>
<li>multiple workers for more powerfull apps</li>

</ul>
<h4>$150</h4>
<button>free trial</button>
</div>


<div class="sec3">
<img src="images.jpg" alt="">
<h3>enterprise</h3>
<ul>
<li>dedicated</li>
<li> simple horizontal +scalability</li>

</ul>
<h4>$400</h4>
<button>Free trial</button>
</div>
</div>




</body>
</html>
121 changes: 121 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
body {
background: #8ecae6;
display: flex;

justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
text-transform: uppercase;
}

.panel {

display: flex;
border: 2px solid rgb(255, 255, 255);
border-radius: 20px;
padding: 30px 10px;
background: white;
flex-wrap: wrap;
align-items:center;
justify-content:space-evenly;
box-shadow: 0px 0px 10px black;

}
.sec1 , .sec2 , .sec3{
padding: 20px;
max-width: 30%;

}
.sec2{
border-left: 1px solid rgb(225, 213, 213);
border-right: 1px solid rgb(225, 213, 213);
}
img{
height: 20vh;
width: 20vh;
margin: 20px 0px;
}

ul{
list-style: none;
display: block;

margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 0px;
unicode-bidi: isolate;

margin: 50px 0px;
}
li{
margin: 20px 0px;

border-top: 2px solid rgb(48, 113, 147);
font-size: 17px;
color:#023047;
letter-spacing: 1px;
line-height: 40px;

}
h3{font-size: 20px;
font-weight: 500;
letter-spacing: 2px;
color: rgb(93, 93, 93);
}
h4{
font-size: 40px;
font-weight: 900;

color:#023047;
}
button{text-transform: uppercase;
font-size: 15px;
color:#023047;
font-weight: 600;
letter-spacing: px;
line-height: 40px;
padding: 0px 20px;
border-radius: 10px;
border: 2px solid black;
background: #ffffff;
transition: background .5s ease-in-out 0s;
}

button:hover{
background: #8ECAE6;
color : white;
}





@media ( max-width: 950px) {
body{
height: 100%;
}
.panel{
flex-direction: column;
}
.sec1 , .sec2 , .sec3{
padding: 5px;
max-width: 100%;
max-width: 400px;
width: 100%;

}

.sec2{
border-top: 1px solid rgb(225, 213, 213);
border-bottom: 1px solid rgb(225, 213, 213);
border-right: none;
border-left: none;
}
}

0 comments on commit 4819095

Please sign in to comment.