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
Binary file added .DS_Store
Binary file not shown.
Binary file added Icons/.DS_Store
Binary file not shown.
88 changes: 88 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Background picture -->
<div id="background">
<img src="Wallpaper/Default.jpg" class="wallpaper">
</div>
<!-- Grey film -->
<div class="film"></div>
<!-- Network, Time and Battery bar -->
<div class="topbar">
<div class="stairs">
<div class="step1"></div>
<div class="step2"></div>
<div class="step3"></div>
<div class="step4"></div>
</div>
<div class="time">10:00</div>
<div class="battery-icon"></div>
</div>
<!-- Homepage Applications -->
<div class="home">
<img src="icons/12.png">
<img src="icons/18.png">
<img src="icons/13.png">
<img src="icons/19.png">
<img src="icons/4.png">
<img src="icons/1.png">
<img src="icons/2.png">
<img src="icons/15.png">
<img src="icons/11.png">
<img src="icons/20.png">
<img src="icons/7.png">
<img src="icons/9.png">
<img src="icons/3.png">
<img src="icons/16.png">
<img src="icons/6.png">
<img src="icons/8.png">
<img src="icons/5.png">
<img src="icons/14.png">
<img src="icons/10.png">
</div>
<div class="labels">
<p class="a1">Galaxy</p>
<p class="a2">VPN</p>
<p class="a3">kmail</p>
<p class="a4">kalculator</p>
<p class="a5">Potify</p>
</div>
<div class="labels">
<p class="a11">Weight</p>
<p class="a22">Clock</p>
<p class="a33">Strip</p>
<p class="a44">To-do</p>
<p class="a55">Message</p>
</div>
<div class="labels">
<p class="b1">Gram</p>
<p class="b2">Blocks</p>
<p class="b3">Planner</p>
<p class="b4">Yeeter</p>
<p class="b5">Diet</p>
</div>
<div class="labels">
<p class="b11">Vime</p>
<p class="b22">Sunny</p>
<p class="b33">Clipboard</p>
<p class="b44">Tinder</p>
</div>
<!-- 3 circles -->
<div class="home">
<div class="circles opaque"></div>
<<div class="circles"></div>
<div class="circles final"></div>
</div>
<!-- Bottom apps -->
<div class="bottom">
<img src="icons/20.png">
<img src="icons/17.png">
<img src="icons/9.png">
<img src="icons/11.png">
</div>
</body>
</html>
190 changes: 190 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
body {
font-family: sans-serif;
}
#background, .film, .home, .labels{
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
.wallpaper {
width:100%;
height:100%;
object-fit: cover;
object-position: 50% 0;
}
.film {
height: 88%;
background-color: black;
opacity: 0.1;
}
.stairs * {
position: relative;
top: 10px;
left: 6px;
height: 13px;
width: 7px;
background-color: white;
display: inline-block;
}
.step2 {
height: 17px;
}
.step3 {
height: 21px;
}
.step4 {
height: 25px;
}
.time {
position: fixed;
left: 47%;
top: 15px;
color: white;
padding-bottom: 30px;
font-size: 30px;
}
.battery-icon {
position: fixed;
width: 50px;
height: 20px;
border-radius: 3px;
border: 3px solid #FFF;
top: 1%;
left: 92%;
}
.battery-icon:before {
content: '';
position: absolute;
top: 4px;
right: -7px;
width: 5px;
height: 10px;
border-radius: 2px;
background: #fffefe;
}
.battery-icon:after {
content: "";
position: absolute;
height: 18px;
width: 97%;
top: 1px;
left: 1px;
background-color: white;
border-radius: 3px;
}
.home {
height: 85%;
top: 2%;
width: 100%;
}
.home img {
height: 150px;
width: 150px;
border-radius: 45px;
margin: 5% 2px 2% 7.5%;
}
.name {
font-size: 40px;
text-align: center;
}
.labels {
position: absolute;
font-size: 30px;
color: white;
font-weight: bold;
padding-left: 10%;
padding-top: 2%;
width: 90%;
right: 0;
}
.a1, .a11, .b1, .b11 {
margin: 24.3% 0px 0% 0%;
}
.a2, .a22, .b2, .b22 {
margin: 22% 0px 0px 2%;
}
.a3, .a33, .b3, .b33 {
margin: 21.5% 0px 0px 1%;
}
.a4, .a44, .b4, .b44 {
margin: 21% 0px 0px -2%;
}
.a5, .a55, .b5, .b55 {
margin: 22% 0px 0px 1%;
}
.a11, .a22, .a33, .a44, .a55{
margin-left: 26%;
}
.a22 {
margin-left: 27%;
}
.a33 {
margin-left: 28%;
}
.a44 {
margin-left: 27.5%;
}
.a55 {
margin-left: 24.5%;
}
.b1, .b2, .b3, .b4, .b5{
margin-left: 53%;
}
.b2 {
margin-left: 52%;
}
.b3 {
margin-left: 51%;
}
.b4 {
margin-left: 52%;
}
.b5 {
margin-left: 55%;
}
.b11 {
margin-left: 80%;
}
.b22 {
margin-left: 79%;
}
.b33 {
margin-left: 76%;
}
.b44 {
margin-left: 79%;
}
.circles {
position: relative;
height: 20px;
width: 20px;
border-radius: 50px;
background-color: white;
display: inline-block;
margin: 5% 0% 2% 2%;
top: 95%;
left: 42%;
}
.final {
margin-left: 30px;
opacity: 0.5;
}
.opaque {
opacity: 0.5;
}
.bottom {
position: absolute;
top: 90%;
left: 12%;
width: 80%;
}
.bottom img {
height: 150px;
width: 150px;
border-radius: 45px;
display: inline-block;
margin: 0px 5.4% 0px 0%;
}