Guest User

Untitled

a guest
Oct 16th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. /*------------------------------------*\
  2. ***1140 inuit GRID***
  3.  
  4. to use this, wrap the 960grid and related css in
  5.  
  6. @media (min-width: 961px) and (max-width: 1140px){
  7. ........................
  8.  
  9. }
  10.  
  11. \*------------------------------------*/
  12.  
  13. body{
  14. width:1120px;
  15. }
  16.  
  17.  
  18. .grids{
  19. margin-left:-20px;
  20. clear:both;
  21. width:1140px;
  22. }
  23. ul.grids {
  24. /* So we can make grids out of lists */
  25. margin:0 0 0 -20px;
  26. list-style:none;
  27. }
  28. .grid{
  29. float:left;
  30. margin:0 20px 0 0;
  31. }
  32. .grids .grid{
  33. display:inline;
  34. margin:0 0 0 20px;
  35. }
  36.  
  37.  
  38. /*
  39. 12-col version
  40. */
  41.  
  42. .grid-1 { width:75px; }
  43. .grid-2 { width:170px; }
  44. .grid-3 { width:265px; }
  45. .grid-4 { width:360px; }
  46.  
  47. .grid-5 { width:455px; }
  48. .grid-6 { width:550px; }
  49. .grid-7 { width:645px; }
  50. .grid-8 { width:740px; }
  51.  
  52. .grid-9 { width:835px; }
  53. .grid-10 { width:930px; }
  54. .grid-11 { width:1025px; }
  55.  
  56. .grid-12 { width:1120px; margin:0; }
  57.  
  58. .verticaline {
  59. background: url("/images/vline.gif") repeat-y scroll right top transparent;
  60. }
Add Comment
Please, Sign In to add comment