Advertisement
Guest User

Untitled

a guest
May 12th, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Something is not right here, I have the following CSS:
  2.  
  3. .jumbotron h1 {color: #fff;font-weight: 700;font-size: 30px;text-transform: uppercase; padding-bottom: 0;margin-bottom: 0;}
  4.  
  5. And at the end of the page, using a media query, I want to make it larger on devices that are wider than the @screen-sm-min variable, so I did this:
  6.  
  7. @media (min-width: @screen-sm-min ) { .jumbotron h1 {color: #fff;font-weight: 700;font-size: 50px;text-transform: uppercase; padding-bottom: 0;margin-bottom: 0;}
  8. }
  9.  
  10. It is not affecting my css.. Any suggestions?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement