Guest User

Untitled

a guest
Feb 16th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="grid-landing-page.css" />
  4. <link
  5. rel="stylesheet"
  6. href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
  7. integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
  8. crossorigin="anonymous"
  9. />
  10. </head>
  11.  
  12. <body>
  13. <div id="grid">
  14. <div id="landing-page">
  15. <img id="logo" src="design/bloggologo.png" />
  16. <div id="heading">Welcome!</div>
  17. <div id="description">Description</div>
  18. <div id="form">Form</div>
  19. </div>
  20. </div>
  21. </body>
  22. </html>
  23.  
  24. body {
  25. height: 100%;
  26. background-color: black;
  27. color: white;
  28. }
  29.  
  30. #grid {
  31. height: 100%;
  32. }
  33.  
  34. #logo {
  35. margin: 10px auto auto 300px;
  36. height: 250px;
  37. width: auto;
  38. }
  39.  
  40. #heading {
  41. font-size: 2em;
  42. }
  43.  
  44. #description {
  45. font-size: 1em;
  46. }
  47.  
  48. @supports (display: grid) {
  49.  
  50. #grid {
  51. display: grid;
  52. grid-template-rows: repeat(2, 3fr) repeat(3, 2fr) repeat(2, 3fr);
  53. grid-template-columns: repeat(2, 45%);
  54. grid-column-gap: 10%;
  55. grid-template-areas: ". ." "lo he" "lo de" "lo fo" "lo fo" "lo fo" ". .";
  56. }
  57.  
  58. #heading {
  59. grid-area: he;
  60. }
  61.  
  62. #description {
  63. grid-area: de;
  64. }
  65.  
  66. #form {
  67. grid-area: fo;
  68. }
  69.  
  70. #logo {
  71. grid-area: lo;
  72. }
  73. }
Add Comment
Please, Sign In to add comment