Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3.  
  4. body{
  5. margin-top:0px;
  6. margin-bottom:0px;
  7. margin-left:0px;
  8. margin-right:0px;
  9.  
  10. }
  11.  
  12. html {
  13. background: url(devbackground.jpg) no-repeat center center fixed;
  14. -webkit-background-size: cover;
  15. -moz-background-size: cover;
  16. -o-background-size: cover;
  17. background-size: cover;
  18. filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='devbackground.jpg', sizingMethod='scale');
  19. -ms-filer:"progid:DXImageTransform.Microsoft.AlphaImageLoader (src='devbackground.jpg', sizingMethod='scale')";
  20.  
  21. }
  22.  
  23. img.bg {
  24. /*set rules to fill background */
  25.  
  26. min-height:100%;
  27. min-width:1024px;
  28.  
  29. /*set up proportiante scaling */
  30. width:100%;
  31. height:auto;
  32.  
  33. /*set up positioning */
  34. position:fixed;
  35. top:0;
  36. left:10;
  37. }
  38.  
  39. /*nav bar code */
  40.  
  41. ul#list-nav {
  42. list-style: none;
  43. width: 1200px;
  44. margin-bottom: 20px; /*height of the nav bar */
  45. margin-left: 450px; /
  46. margin-right: 450px;
  47. margin-top: 20px;
  48. padding-bottom: 0;
  49. padding-left: 0;
  50. padding-right: 0px;
  51. padding-top: 0;
  52.  
  53. }
  54.  
  55.  
  56. ul#list-nav li {
  57. display:inline
  58.  
  59. }
  60.  
  61.  
  62. ul#list-nav li a { /* nav bar boxes */
  63. text-decoration: none;
  64. width: 200px;
  65. height:auto;
  66. background: #485e49;
  67. color: #eee;
  68. float: left;
  69. text-align: center;
  70. border-left: 1px solid #fff;
  71. padding-bottom: 5px;
  72. padding-left: 0;
  73. padding-right: auto;
  74. padding-top: 5px;
  75.  
  76. }
  77.  
  78. ul#list-nav li a:hover {
  79. background:#a2b3a1;
  80. color:#000;
  81.  
  82. }
  83.  
  84. #list-nav, #list-nav ul {
  85. margin:0 auto;
  86. padding:0;
  87. }
  88. #list-nav li {
  89. float: left;
  90. position: relative;
  91. list-style: none;
  92. }
  93.  
  94. #list-nav > li:hover > ul {
  95. display: block;
  96. }
  97. #list-nav > li > ul {
  98. display: none;
  99. position: absolute;
  100. }
  101. #list-nav li a {
  102. white-space: nowrap;
  103. }
  104.  
  105. <!doctype html>
  106.  
  107.  
  108. <html>
  109.  
  110.  
  111. <head>
  112.  
  113. <link rel="stylesheet" type="text/css" href="css.css">
  114.  
  115.  
  116. <meta charset="utf-8">
  117.  
  118.  
  119. <title>Welcome to dcoltgaming.co.uk</title>
  120.  
  121.  
  122. </head>
  123.  
  124.  
  125.  
  126. <body>
  127.  
  128. <ul id="list-nav">
  129.  
  130. <li><a href="/">Home</a></li>
  131. <li><a href="#">Stuff</a>
  132.  
  133. <ul>
  134. <li><a href="navbartest.html">NavBar Test</a></li>
  135. </ul>
  136.  
  137. </li>
  138.  
  139. <li><a href="#">More Stuff</a></li>
  140. <li><a href="#">Guess what? thats right more stuff!!!!!</a></li>
  141. <li><a href="troll.html">Troll Faces</a></li>
  142.  
  143.  
  144. </ul>
  145.  
  146.  
  147. </body>
  148.  
  149.  
  150. </html>K<!doctype html>
  151.  
  152.  
  153. <html>
  154.  
  155.  
  156. <head>
  157.  
  158. <link rel="stylesheet" type="text/css" href="css.css">
  159.  
  160.  
  161. <meta charset="utf-8">
  162.  
  163.  
  164. <title>Welcome to dcoltgaming.co.uk</title>
  165.  
  166.  
  167. </head>
  168.  
  169.  
  170.  
  171. <body>
  172.  
  173. <ul id="list-nav">
  174.  
  175. <li><a href="/">Home</a></li>
  176. <li><a href="#">Stuff</a>
  177.  
  178. <ul>
  179. <li><a href="navbartest.html">NavBar Test</a></li>
  180. </ul>
  181.  
  182. </li>
  183.  
  184. <li><a href="#">More Stuff</a></li>
  185. <li><a href="#">Guess what? thats right more stuff!!!!!</a></li>
  186. <li><a href="troll.html">Troll Faces</a></li>
  187.  
  188.  
  189. </ul>
  190.  
  191.  
  192. </body>
  193.  
  194.  
  195. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement