Advertisement
Guest User

Untitled

a guest
May 26th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. /* An example of how you can style each word */
  2.  
  3. /* Uncomment this if you want to remove the space between words
  4. *
  5. .site-title {
  6. font-size: 0;
  7. }
  8. */
  9.  
  10. /* Font size for all the span tags */
  11. .site-title span {
  12. font-size: 30px;
  13. }
  14. /* style the first word */
  15. .site-title span:nth-child(1) {
  16. color: #333;
  17. font-weight: 400;
  18. }
  19. /* style the second word */
  20. .site-title span:nth-child(2) {
  21. color: #99d7da;
  22. font-weight: 700;
  23. }
  24. /* style the third word */
  25. .site-title span:nth-child(3) {
  26. color: #333;
  27. font-weight: 400;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement