Advertisement
aokmikey

Untitled

Apr 29th, 2017
560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.79 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <title>Sharpienero</title>
  8.         <link href="https://fonts.googleapis.com/css?family=Lato:100,300" rel="stylesheet" type="text/css">
  9.         <link rel="stylesheet" type="text/css" href="assets/css/fontello.css">
  10.  
  11.         <style>
  12.             html, body {
  13.                 background-color: #3c4d5f;
  14.                 color: #ffffff;
  15.                 font-family: 'Lato', sans-serif;
  16.                 font-weight: 100;
  17.                 height: 100vh;
  18.                 margin: 0;
  19.  
  20.                 -moz-osx-font-smoothing: grayscale;
  21.                 -ms-font-smoothing: antialiased;
  22.                 -webkit-font-smoothing: antialiased;
  23.                 font-smoothing: antialiased;
  24.                 text-rendering: optimizeLegibility;
  25.             }
  26.             .content {
  27.                 text-align: center;
  28.                 align-items: center;
  29.                 height: 100vh;
  30.                 display: flex;
  31.                 justify-content: center;
  32.             }
  33.             .title {
  34.                 font-size: 84px;
  35.                 margin-bottom: 0;
  36.             }
  37.             p {
  38.                 margin-top: 0;
  39.                 margin-bottom: 2rem;
  40.                 font-size: 1.6rem;
  41.                 font-weight: 300;
  42.             }
  43.             .links > a {
  44.                 color: #c3c3c3;
  45.                 padding: 0 20px;
  46.                 font-size: 18px;
  47.                 font-weight: 300;
  48.                 letter-spacing: .1rem;
  49.                 text-decoration: none;
  50.                 text-transform: uppercase;
  51.                 transition: color .2s ease;
  52.             }
  53.  
  54.             .links i {
  55.                 margin-right: 5px;
  56.             }
  57.  
  58.             .links a:hover {
  59.                 color: white;
  60.             }
  61.         </style>
  62.     </head>
  63.     <body>
  64.         <div class="content">
  65.             <main>
  66.                 <div class="title">Sharpienero</div>
  67.                 <p>Low Level Programmer & Backend Developer</p>
  68.                 <div class="links">
  69.                     <a href="mailto:contact@sharpienero.me"><i class="icon-mail"></i>Email</a>
  70.                     <a href="https://github.com/sharpienero"><i class="icon-github"></i>GitHub</a>
  71.                 </div>
  72.             </main>
  73.         </div>
  74.     </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement