Advertisement
Guest User

css

a guest
Sep 24th, 2014
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. body {
  2. font-family: 'PT Sans Narrow', sans-serif;
  3. color: red;
  4. background-color: #000;
  5. width: 100%;
  6. }
  7.  
  8. html {
  9. overflow-y: scroll;
  10. }
  11.  
  12. a, a:hover, a:focus {
  13. text-decoration: none;
  14. }
  15.  
  16. .container-fluid {
  17. padding-left:0;
  18. padding-right:0;
  19. }
  20.  
  21. .width-90 {
  22. width: 90%;
  23. margin: 0 auto;
  24. padding: 0 2%;
  25. }
  26.  
  27. .width-80 {
  28. width: 80%;
  29. margin: 0 auto;
  30. padding: 0 2%;
  31. }
  32.  
  33. .width-70 {
  34. width: 70%;
  35. margin: 0 auto;
  36. padding: 0 2%;
  37. }
  38.  
  39. /* mainnav*/
  40. #main-nav {
  41. position: fixed;
  42. z-index: 2000;
  43. width: 170px;
  44. top: 30px;
  45. opacity: 0.8;
  46. filter: alpha(opacity=80);
  47. }
  48.  
  49. #main-nav ul {
  50. margin: 0;
  51. padding: 0;
  52. }
  53.  
  54. #main-nav img {
  55. vertical-align: baseline!important;
  56. }
  57.  
  58. #main-nav h1 {
  59. font-family: 'PT Sans Narrow', sans-serif;
  60. font-size: 25px;
  61. color: #FFF;
  62. box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  63. padding: 20px;
  64. background: #000;
  65. }
  66.  
  67. .section {
  68. width: 100%;
  69. display: none;
  70. }
  71.  
  72. #index {
  73. display: block;
  74. }
  75.  
  76. #img-gallery {
  77. height: 100%;
  78. }
  79.  
  80. #img-gallery .grid-sizer {
  81. width: 22.5%;
  82. }
  83.  
  84. .item a {
  85. font-size: 13px;
  86. font-weight: bold;
  87. background: #C7356A;
  88. color: white;
  89. display: block;
  90. border-radius: 10px 10px 8px 8px;
  91. }
  92.  
  93. .item img {
  94. display: block;
  95. max-width: 100%;
  96. border-radius: 8px 8px 0 0;
  97. }
  98.  
  99. .item .title {
  100. padding: 5px 10px;
  101. margin: 0;
  102. }
  103.  
  104. #map_canvas {
  105. max-width: 400px;
  106. width: 100%;
  107. height: 300px;
  108. position: relative;
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement