05-04-finished-example.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Finished example</title>
  6. <style>
  7. body {
  8. padding: 0;
  9. margin: 0;
  10. font-family: "Helvetica Neue", Arial, sans-serif;
  11. }
  12. .profile-box {
  13. position: relative;
  14. height: 600px;
  15. background-image: url(img/big-cat.jpg);
  16. background-size: cover;
  17. background-position: 50% 30%;
  18. box-shadow: inset 0 -.5em .5em rgba(0, 0, 0, 0.3);
  19. border-bottom: 1px solid #666;
  20. }
  21. .profile-photo {
  22. width: 160px;
  23. min-height: 200px;
  24. position: absolute;
  25. bottom: -60px;
  26. left: 5%;
  27. padding: .5em;
  28. -webkit-border-radius: .5em;
  29. border-radius: .5em;
  30. background-color: #fff;
  31. box-shadow: .25em .25em .5em rgba(0, 0, 0, 0.3);
  32. }
  33. .profile-photo img {
  34. display: block;
  35. max-width: 100%;
  36. height: auto;
  37. }
  38. .username {
  39. font-size: 20px;
  40. color: #666;
  41. margin: .35em 0 0;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <header class="profile-box" role="banner">
  47. <div class="profile-photo">
  48. <img src="img/profile.jpg" alt="Charles the Cat">
  49. <h1 class="username">@CharlesTheCat</h1>
  50. </div>
  51. </header>
  52. </body>
  53. </html>