Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. /* CSS Document */
  2. body{
  3. background-image:url(images/grunge.png);
  4. background-repeat:repeat-x;
  5. }
  6.  
  7. #special{
  8. background-color:#5f8288;
  9. background-image:url(images/special-bg.png);
  10. background-repeat:repeat-x;
  11. background-position:bottom;
  12. padding-bottom:10px;
  13. color:white;
  14. }
  15.  
  16. nav ul li{
  17. float:left;
  18. width:20%;
  19. text-align:center;
  20. padding-bottom:20px;
  21.  
  22. }
  23. #main{
  24. width:60%;
  25. box-sizing:border-box;
  26. float:left;
  27. }
  28. #wrapper{
  29. width:960px;
  30.  
  31. }
  32. #sidebar{
  33. width:40%;
  34. box-sizing:border-box;
  35. float:rigth;
  36. }
  37. #main img{
  38. width:95%;
  39. }
  40. .callout{
  41. float:rigth;
  42. text-align:center;
  43. padding-bottom:20px;
  44. padding-left:20px;
  45. padding-top:20px;
  46. background-color:#f9e9c7
  47.  
  48. }
  49. #sidebar{
  50. float:right;
  51. }
  52. #sidebar ul{
  53. -webkit-column-count: 2;
  54. -moz-column-count: 2;
  55. column-count: 2;
  56.  
  57.  
  58. }
  59. footer{
  60. display:block;
  61. text-align:center;
  62. clear:both;
  63. padding-top:10px;
  64. }
  65. #logo{
  66. float:left;
  67. width:20%;
  68. }
  69. .clearfix:after {
  70. content: ".";
  71. display: block;
  72. height: 0;
  73. clear: both;
  74. visibility: hidden;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement