Skip to content

SEI 24 - Hilman #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
112 changes: 112 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
* {
box-sizing: border-box;
font-family: sans-serif;
margin: 0;
padding: 0;
}

body {
background: url('Wallpaper/Default.jpg') no-repeat;
background-size: cover;
height: 100vh;
/*padding-top: 2.5vh;*/
}

header {
/* position: fixed;
top: 0;
left: 0;*/
height: 2.5vh;
width: 100%;
text-align: center;
color: white;
font-size: 30px;
padding: 5px 15px 0 15px;
/*border: 1px solid lightyellow;*/
}
/*heads up bar*/
header>svg:first-child {
float: left;
color: pink;
}

header>svg:last-child {
float: right;
color: red;
}
/*main app area*/
.main {
/*border: 1px solid deeppink;*/
position: relative;
height: 84.5vh;
padding: 45px 38px 38px 38px;
}

.filter {
backdrop-filter: brightness(0.9);
-webkit-backdrop-filter: brightness(0.9);
}
/*app layout starts here*/
.app:after {
content: "";
clear: both;
display: table;
}

.card {
float: left;
width: calc((100% - (38px * 8)) / 4);
height: calc((84.5vh - (44px * 6)) / 6);
margin: 0 38px 34px 38px;
text-align: center;
}

.card img {
max-width: 100%;
border-radius: 25%;
}

.card p {
font-size: 25px;
color: #D7D6DB;

}

/*page indicators here*/
.pagination {
position: absolute;
bottom: 10px;
left: calc(50% - (110px / 2));
}

.pagination-btn {
display: inline-block;
margin: 0 8px;
height: 15px;
width: 15px;
border-radius: 50%;
background-color: white;
opacity: 0.5;
}
/*dock*/
footer {
position: fixed;
bottom: 0;
left: 0;
height: 13vh;
/*border: 1px solid blueviolet;*/
padding: 34px 38px;
}

footer:before {
content: "";
clear: both;
display: table;
}

footer img {
float: left;
width: calc((100% - (38px * 8)) / 4);
margin: 0 38px;
border-radius: 25%;
}
117 changes: 117 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<!DOCTYPE html>
<html>
<head>
<title>IOS mock up</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="filter">
<header>
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width="48" height="36"
viewBox="0 0 172 172"
style=" fill:#000000;"><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,172v-172h172v172z" fill="none"></path><g fill="#ffffff"><path d="M130.72,6.88v158.24h34.4v-158.24zM89.44,44.72v120.4h34.4v-120.4zM48.16,82.56v82.56h34.4v-82.56zM6.88,120.4v44.72h34.4v-44.72z"></path></g></g></svg>
<span>10:00</span>
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width="60" height="60"
viewBox="0 0 172 172"
style=" fill:#000000;"><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,172v-172h172v172z" fill="none"></path><g fill="#ffffff"><path d="M22.93333,40.13333c-9.43116,0 -17.2,7.76884 -17.2,17.2v51.6c0,9.43116 7.76884,17.2 17.2,17.2h114.66667c9.43116,0 17.2,-7.76884 17.2,-17.2v-51.6c0,-9.43116 -7.76884,-17.2 -17.2,-17.2zM22.93333,51.6h114.66667c3.23951,0 5.73333,2.49383 5.73333,5.73333v51.6c0,3.23951 -2.49383,5.73333 -5.73333,5.73333h-114.66667c-3.23951,0 -5.73333,-2.49383 -5.73333,-5.73333v-51.6c0,-3.23951 2.49383,-5.73333 5.73333,-5.73333zM28.66667,63.06667v40.13333h103.2v-40.13333zM160.53333,68.8v28.66667h5.73333c3.1648,0 5.73333,-2.56853 5.73333,-5.73333v-17.2c0,-3.1648 -2.56853,-5.73333 -5.73333,-5.73333z"></path></g></g></svg>
</header>
<div class="main">
<div class="app">
<div class="card">
<img src="Icons/1.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/2.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/3.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/4.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/5.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/6.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/7.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/8.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/9.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/10.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/11.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/12.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/13.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/14.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/15.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/16.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/16.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/16.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/16.png">
<p>App name</p>
</div>
<div class="card">
<img src="Icons/16.png">
<p>App name</p>
</div>
</div>
<div class="pagination">
<div class="pagination-btn"></div>
<div style="opacity: 1;" class="pagination-btn"></div>
<div class="pagination-btn"></div>
</div>
</div>
</div>
<footer>
<img src="Icons/17.png">
<img src="Icons/18.png">
<img src="Icons/19.png">
<img src="Icons/20.png">
</footer>
</body>
</html>