above_the_fold.neovan 532 B

12345678910111213141516171819202122232425
  1. <@html>
  2. <div class="aboveTheFold">
  3. <@ ./components/rotating_logo.neovan @>
  4. <h2>An anti-framework for building the front-end with plain HTML/CSS/JavaScript</h2>
  5. </div>
  6. <@/html>
  7. <@style>
  8. .aboveTheFold{
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: space-around;
  13. height: 100vh;
  14. width: 100%;
  15. position: relative;
  16. overflow: hidden;
  17. }
  18. h2{
  19. text-align: center;
  20. margin: 15px;
  21. }
  22. <@/style>