Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. .home-page {
  2. @include container(100%);
  3. height: 100%;
  4. min-height: 1020px;
  5. nav {
  6. ul {
  7. @include horizontal-list();
  8. li {
  9. @include box-sizing(border-box);
  10. width: 20%;
  11. padding: 2%;
  12. text-align: center;
  13. }
  14. }
  15. }
  16. .about-me {
  17. width: inherit;
  18. height: auto;
  19. .about-text {
  20. @include span(5);
  21. }
  22. .about-pic {
  23. @include span(3 at 9 of 12);
  24. }
  25. }
  26. }
  27.  
  28. <div class="home-page">
  29.  
  30. <nav>
  31. <ul>
  32. <li class="navi home-nav"><a href="#">HOME</a></li>
  33. <li class="navi work-nav"><a href="#">WORK</a></li>
  34. <li class="navi logo-nav"><a href="#">Placeholder</a></li>
  35. <li class="navi blog-nav"><a href="#">BLOG</a></li>
  36. <li class="navi cont-nav"><a href="#">CONTACT</a></li>
  37. </ul>
  38. </nav>
  39.  
  40. <div class="about-me">
  41. <div class="about-text">
  42. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolores, iure quasi veritatis? Natus pariatur molestias modi laborum sed numquam, architecto nemo. Nobis id itaque nostrum, aliquam repellendus qui voluptatem? Soluta.
  43. </div>
  44. <div class="about-pic">Pic goes here</div>
  45. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement