Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <html>
  2. <body>
  3. <div id="main-container">
  4. <h2>BASIC SASS(Syntactically awesome stylesheet) EXAMPLE</h2>
  5. <div class="container">
  6. <article>
  7. <section class="featured-sec">
  8. <h4>Basic features</h4>
  9. <nav>
  10. <ul>
  11. <li>variable</li>
  12. <li>nesting</li>
  13. <li>mixins</li>
  14. <li>Inheritance</li>
  15. <li>operator</li>
  16. </ul>
  17. </nav>
  18. </section>
  19. <aside class="aside">One of the most useful features of Sass is being able to separate your s
  20. tylesheets into separate files. You can then use the @import directive to
  21. include the source of your individual files into one master stylesheet.
  22. But how should you structure your Sass projects? Is there a standard way of
  23. separating out your CSS files?
  24. </aside>
  25. </article>
  26. </div>
  27. <hr>
  28. <footer>
  29. <p>Copyright 2009 M. Sachin</p>
  30. </footer>
  31. </div>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement