Advertisement
Guest User

Untitled

a guest
Oct 5th, 2015
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.37 KB | None | 0 0
  1.  
  2. .logobanner, .navbar, .section, .footer {
  3.     background-repeat:                    no-repeat;
  4.     background-attachment:                    fixed;
  5.     background-size:                      auto 100%;
  6. }
  7.  
  8.  
  9.  
  10.  
  11. body {
  12.     background-image:    url("/pics/nightcity.jpg");
  13.     background-repeat:                    no-repeat;
  14.     background-attachment:                    fixed;
  15.     background-size:                      100% 100%;   
  16. }
  17.  
  18. .logobanner {
  19.     position:                                 fixed;
  20.     top:                                        0px;
  21.     right:                                    300px;
  22.     left:                                     300px;
  23.     bottom:                                    50px;
  24.     padding-top:                                5px;
  25.     padding-bottom:                            auto;
  26.     text-align:                              center;   
  27. }
  28.  
  29. .navbar {
  30.     position:                                 fixed;
  31.     top:                                      160px;
  32.     right:                                    300px;
  33.     left:                                     300px;
  34.     bottom:                                    auto;
  35.     height:                                    70px;
  36.     background-color:                           red;
  37.     border:                         3px solid black;
  38.     background-image:     url("/pics/navbarbg.jpg");
  39.  
  40.  
  41. }
  42.  
  43. section {
  44.     font-family:           'Montserrat', sans-serif;
  45.     position:                                 fixed;
  46.     top:                                      240px;
  47.     right:                                    300px;
  48.     left:                                     300px;
  49.     background-color:                     black;
  50.     border:                         3px solid black;
  51.     text-align:                  center;
  52.     color:                                   yellow;   
  53.     height:                                    100%;
  54. }
  55.  
  56. p {
  57.     font-family:           'Montserrat', sans-serif;
  58.  
  59. }
  60.  
  61. h1, h2, h3 {
  62.     font-family:           'Montserrat', sans-serif;
  63.     color:                                white;
  64. }
  65.  
  66. ul {
  67.     font-family:           'Montserrat', sans-serif;
  68.     font-size:                                     20px;
  69.         padding-left:                                  30px;
  70.         border-left:                              0;
  71.     border-top:                                       0;
  72. }
  73.  
  74. li {
  75.     list-style-type:                           none;
  76.     display:                                 inline;
  77.     color:                                        white;
  78.     border-left:                                  0;
  79.     border-top:                                       0;
  80. }
  81.  
  82.  
  83. .footer {
  84.     font-family:           'Montserrat', sans-serif;
  85.     text-align:                              center;
  86.     position:                                 fixed;
  87.         left:                                     300px;
  88.         right:                                    300px;
  89.         top:                                       100%;
  90.         bottom:                                       0;
  91.          width:                                    auto;
  92.     height:                                    50px;
  93.         background-image:     url("/pics/footerbg.jpg");
  94.     border:                         3px solid black;
  95.    
  96.  
  97. }
  98.  
  99. a {
  100.    
  101. }
  102.  
  103. a:link {
  104.     text-decoration: none;
  105.     background-color: #000080;
  106. }
  107.  
  108. a:visited {
  109.     background-color: #000080;
  110.     color: white;
  111. }
  112.  
  113. a:hover {
  114.     background-color: #000000;
  115.     color: yellow;
  116. }
  117.  
  118. a:active {
  119.     background-color: yellow;
  120.     color: black;
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement