Advertisement
Guest User

Untitled

a guest
Aug 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.17 KB | None | 0 0
  1. body, html {
  2.     height: 100%;
  3.     margin: 0;
  4. }
  5.  
  6. .bg {
  7.     background-image: url("images/test2.jpg");
  8.     height: 93%;
  9.     background-position: center;
  10.     background-repeat: no-repeat;
  11.     background-size: cover;
  12. }
  13.  
  14. .cbg {
  15.     background-color: #DC632A ;
  16.     height: 93%;
  17.     background-position: center;
  18.     background-repeat: no-repeat;
  19.     background-size: cover;
  20. }
  21.  
  22.  
  23. ul.topnav {
  24.     list-style-type: none;
  25.     margin: 0;
  26.     padding: 0;
  27.     overflow: hidden;
  28.     background-color: #333;
  29. }
  30.  
  31. ul.topnav li {float: right;}
  32.  
  33. ul.topnav li a {
  34.     display: block;
  35.     color: white;
  36.     text-align: center;
  37.     padding: 14px 16px;
  38.     text-decoration: none;
  39. }
  40.  
  41. .mid h2 {
  42.   font-family: 'Roboto', sans-serif;
  43.   font-weight: 900;
  44.   color: white;
  45.   text-transform: uppercase;
  46.   margin: 0;
  47.   position: absolute;
  48.   top: 50%;
  49.   left: 65%;
  50.   font-size: 2rem;
  51.   transform: translate(-50%, -50%);
  52. }
  53.  
  54. ul.topnav li:hover:not(.left) {background-color: #111;}
  55.  
  56. ul.topnav li a.active {background-color: #DC632A;}
  57.  
  58. ul.topnav li.left {float: left;}
  59.  
  60. @media screen and (max-width: 600px){
  61.     ul.topnav li.left,
  62.     ul.topnav li {float: none;}
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement