Rainrix2001

CS101 CSS

Sep 29th, 2019
685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.75 KB | None | 0 0
  1. *{
  2.     margin:0px;
  3.     padding:0px;
  4. }
  5.  
  6. .bgimage{
  7.     background-image: url('tt.jpg');
  8.     background-size: 100% 110%;
  9.     width: 100%;
  10.     height: 100vh;
  11. }
  12.  
  13. .menu{
  14.  
  15.     width: 100%;
  16.     height: 100px;
  17.     background-color: rgba(0,0,0,0.5);
  18. }
  19.  
  20. .leftmenu{
  21.     width: 20%;
  22.     line-height: 100px;
  23.     float: left;
  24. /*  background-color: yellow;*/
  25. }
  26.  
  27. .leftmenu h4{
  28.     padding-left: 70px;
  29.     font-weight: bold;
  30.     color: white;
  31.     font-size: 22px;
  32.     font-family: 'Montserrat', sans-serif;
  33. }
  34.  
  35.  
  36. .rightmenu{
  37.     width:70%;
  38.     height: 100px;
  39.     float: right;
  40. /*  background-color: red; */
  41. }
  42.  
  43. .rightmenu ul{
  44.     margin-left: 200px;
  45. }
  46.  
  47. .rightmenu ul li {
  48.     font-family: 'Montserrat', sans-serif;
  49.     display: inline-block;
  50.     list-style: none;
  51.     font-size: 15px;
  52.     color:white;
  53.     font-weight: bold;
  54.     line-height: 100px;
  55.     margin-left: 40px;
  56.     text-transform: uppercase;
  57.  
  58. }
  59.  
  60. #fisrtlist{
  61.     color: orange;
  62. }
  63.  
  64. .rightmenu ul li:hover{
  65.     color: orange;
  66. }
  67.  
  68.  
  69. .text{
  70.     width: 100%;
  71.     margin-top: 185px;
  72.     text-transform: uppercase;
  73.     text-align: center;
  74.     color:white;
  75. }
  76.  
  77. .text h4{
  78.  
  79.     font-size: 14px;
  80.     font-family: 'Open Sans', sans-serif;
  81. }
  82.  
  83. .text h1{
  84.     font-size:62px;
  85.     font-family: 'Montserrat', sans-serif;
  86.     font-weight: 700px;
  87.     margin:14px 0px;
  88. }
  89.  
  90. .text h3{
  91.     font-size: 12px;
  92.     font-family: 'Open Sans', sans-serif;
  93. }
  94.  
  95.  
  96. #buttonone{
  97.     background-color: white;
  98.     border: none;
  99.     font-size: 12px;
  100.     font-weight: bold;
  101.     text-transform: uppercase;
  102.     line-height: 40px;
  103.     width: 150px;
  104.     font-family: 'Montserrat', sans-serif;
  105.     margin-top: 25px;
  106.     border: 3px solid white;
  107. }
  108.  
  109. #buttontwo{
  110.  
  111.     background-color: white;
  112.     border: none;
  113.     font-family: 'Montserrat', sans-serif;
  114.     text-transform: uppercase;
  115.     font-weight: bold;
  116.     line-height: 40px;
  117.     border: 3px solid white;
  118.     width: 150px;
  119. }
Advertisement
Add Comment
Please, Sign In to add comment