Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. * {
  6. padding:0;
  7. margin:0;
  8. background:#2c2c2f;
  9. outline: 1px solid red;
  10. }
  11. main {
  12. margin-top: 40px;
  13. }
  14. main article {
  15. display:flex;
  16. margin-top: 20px;
  17. width:100vw;
  18. height:100px;
  19. }
  20. main .center{
  21. display: flex;
  22. }
  23. header h1{
  24. font-size: 3em;
  25. align-content: center;
  26. color:white;
  27. }
  28. header .center{
  29. align-items: center;
  30. height: 100%;
  31. }
  32. nav button {
  33. font-size: 1.3em;
  34. display:flex;
  35. justify-content: center;
  36. align-content: center;
  37. flex-direction: column;
  38. cursor: pointer;
  39. height:20px;
  40. color:white;
  41. opacity:0.5;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <header>
  47. <h1>Yeeters</h1>
  48. <div class="center">
  49. <nav>
  50. <button>yeet</button>
  51. <button>yeet</button>
  52. <button>yeet</button>
  53. <button>yeet</button>
  54. <button>yeet</button>
  55. </nav>
  56. </div>
  57. </header>
  58. <main>
  59. <div class="center">
  60. <article>
  61. hi
  62. </article>
  63. <article>
  64. hello
  65. </article>
  66. <article>
  67. yes
  68. </article>
  69. <article>
  70. big
  71. </article>
  72. </div>
  73. </main>
  74. </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement