Personal website layout

Size
4,107 Kb
Views
22,264

How do I make an personal website layout?

An idea for my personal website captured on CSS.. What is a personal website layout? How do you make a personal website layout? This script and codes were developed by Alejandro Montañez on 13 October 2022, Thursday.

Personal website layout Previews

Personal website layout - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Personal website layout</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class='computer'> <div class='on'></div> <div class='shade'></div> <div class='screen'> <div class='site'> <div class='header'> <div class='logo'></div> <div class='nav'> <span class='ball'></span> <span class='ball'></span> <span></span> <span></span> <span></span> </div> </div> <div class='section'> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div> <div class='footer'> <div class='copyright'></div> <div class='nav'> <span></span> <span></span> <span></span> </div> </div> </div> </div>
</div>
<div class='support'></div>
<div class='base'></div> <script src="js/index.js"></script>
</body>
</html>

Personal website layout - Script Codes CSS Codes

body, div, span { margin: 0; padding: 0; box-sizing: border-box;
}
html { background: #2c2c2c;
}
body { width: 580px; margin: 20px auto 0; opacity: 0; -webkit-animation: in 200ms ease-in 2.4s forwards; animation: in 200ms ease-in 2.4s forwards;
}
.computer { width: 100%; height: 360px; position: relative; overflow: hidden; z-index: 2; padding: 20px 20px 40px 20px; border-radius: 15px; background: #bcbcbc;
}
.computer .shade { width: 130%; height: 230%; -webkit-transform: rotate(28deg); transform: rotate(28deg); position: absolute; top: 0; left: 35%; z-index: 1; background: #cccccc;
}
.computer .screen { width: 100%; height: 100%; position: relative; z-index: 3; border-radius: 2px; background: #1f181e;
}
.computer .on { width: 10px; height: 10px; position: absolute; z-index: 4; bottom: 15px; right: 30px; border-radius: 50%; background: #e42e41;
}
.support { width: 75px; height: 30px; margin: 0 auto; background: #cccccc;
}
.base { width: 290px; height: 8px; margin: 0 auto; border-radius: 3px; background: #cccccc;
}
.site { width: 432px; height: 100%; position: relative; z-index: 999; margin: 0 auto;
}
.site .section { width: 100%;
}
.site .header, .site .footer { width: 100%; height: 34px; position: relative;
}
.site .header *, .site .footer * { border-radius: 2px;
}
.site .header .nav, .site .footer .nav { width: 169px; height: 14px; position: absolute; top: 10px; right: 0;
}
.site .header .nav span, .site .footer .nav span { display: block; float: left; margin-right: 10px; background: #f60;
}
.site .header .nav span:last-child, .site .footer .nav span:last-child { margin: 0;
}
.site .header .nav span.ball, .site .footer .nav span.ball { width: 12px; height: 12px; border-radius: 50%;
}
.site .header .nav span:not(.ball), .site .footer .nav span:not(.ball) { width: 35px; height: 6px; position: relative; top: 4px;
}
.site .header .logo { width: 89px; height: 14px; position: relative; top: 10px; background: white;
}
.site .section { width: 100%; height: calc(100% - 68px);
}
.site .section div { display: block; width: calc((100% / 3) - 5px); height: calc((100% / 3) - 5px); float: right; margin: 5px 0 0 5px; background: #140f13;
}
.site .section div:nth-child(3), .site .section div:nth-child(6), .site .section div:nth-child(9) { width: calc(100% / 3); margin-left: 0;
}
.site .footer .copyright { width: 25px; height: 6px; position: relative; top: 14px; background: #646464;
}
.site .footer .nav span { width: 28px !important; float: right; background: #b94e0d;
}
.site .footer .nav span:first-child { margin: 0;
}
.site .footer .nav span:last-child { margin-right: 10px !important;
}
@-webkit-keyframes in { 0% { opacity: 0; -webkit-transform: rotate(0deg) translate3d(0, 0, 0); transform: rotate(0deg) translate3d(0, 0, 0); } 30% { opacity: 0.8; -webkit-transform: rotate(4deg); transform: rotate(4deg); } 90% { opacity: 1; -webkit-transform: rotate(-8deg); transform: rotate(-8deg); } 100% { opacity: 1; -webkit-transform: rotate(0deg) translate3d(0, 0, 0); transform: rotate(0deg) translate3d(0, 0, 0); }
}
@keyframes in { 0% { opacity: 0; -webkit-transform: rotate(0deg) translate3d(0, 0, 0); transform: rotate(0deg) translate3d(0, 0, 0); } 30% { opacity: 0.8; -webkit-transform: rotate(4deg); transform: rotate(4deg); } 90% { opacity: 1; -webkit-transform: rotate(-8deg); transform: rotate(-8deg); } 100% { opacity: 1; -webkit-transform: rotate(0deg) translate3d(0, 0, 0); transform: rotate(0deg) translate3d(0, 0, 0); }
}
@media all and (max-width: 650px) { @-webkit-keyframes in { 0% { opacity: 0; -webkit-transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); } 30% { opacity: 0.8; -webkit-transform: scale(0.68) rotate(4deg); transform: scale(0.68) rotate(4deg); } 90% { opacity: 1; -webkit-transform: scale(0.68) rotate(-8deg); transform: scale(0.68) rotate(-8deg); } 100% { opacity: 1; -webkit-transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); } } @keyframes in { 0% { opacity: 0; -webkit-transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); } 30% { opacity: 0.8; -webkit-transform: scale(0.68) rotate(4deg); transform: scale(0.68) rotate(4deg); } 90% { opacity: 1; -webkit-transform: scale(0.68) rotate(-8deg); transform: scale(0.68) rotate(-8deg); } 100% { opacity: 1; -webkit-transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); transform: scale(0.68) rotate(0deg) translate3d(0, 0, 0); } } body { -webkit-transform-origin: center 0; transform-origin: center 0; }
}

Personal website layout - Script Codes JS Codes

// say hello: twitter@codeams
// Live version: codeams.ml
Personal website layout - Script Codes
Personal website layout - Script Codes
Home Page Home
Developer Alejandro Montañez
Username codeams
Uploaded October 13, 2022
Rating 3.5
Size 4,107 Kb
Views 22,264
Do you need developer help for Personal website layout?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Alejandro Montañez (codeams) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!