Advertisement
Guest User

css

a guest
Jun 29th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. body {
  2. background-color:#888;
  3. z-index:0;
  4. }
  5.  
  6. ul {
  7. font-size:20;
  8. list-style-type: none;
  9. margin: 0;
  10. padding: 0;
  11. width: 100%;
  12. background: #333;
  13. height: 70px;
  14. position: fixed;
  15. left:0;
  16. top:0;
  17. overflow: hidden;
  18. z-index:300;
  19. }
  20. .nav-item {
  21. float: right;
  22. margin:0;
  23. padding:0;
  24. display: inline;
  25. display: block;
  26. color: white;
  27. text-align: center;
  28. text-decoration: none;
  29. padding: 25px 60px;
  30. }
  31.  
  32. li a:hover{
  33. color:#f1f1f1;
  34. background-color: #111;
  35. }
  36.  
  37.  
  38. }
  39.  
  40. /*.nav-logo{
  41. z-index:600;
  42. float: left;
  43. } */
  44.  
  45. #main1{
  46. padding-top:25px;
  47. background:url("work.jpg");
  48. background-repeat:"no-repeat";
  49. background-size:"100%";
  50. z-index:2;
  51. }
  52.  
  53. .con1{
  54.  
  55. padding-top:25px;
  56. width: 85%;
  57. height: 1000px;
  58. background: #dbdbdb;
  59. margin:0px auto;
  60. margin-top:70px;
  61. opacity:0.75;
  62. border-color: RGB(50,50,50);
  63. border-color: RGBa(50,50,50,.5);
  64. }
  65. /*#main2{
  66.  
  67. }
  68. .con2{
  69.  
  70. } */
  71.  
  72. .footer {
  73. padding-bottom:0px;
  74. width:100%;
  75. height:50px;
  76. background:#888;
  77. position:fixed;
  78. z-index:300
  79. }
  80. .footer > h1 {
  81. text-align:center;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement