Guest User

CSS code

a guest
Aug 3rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.95 KB | None | 0 0
  1. body{
  2.   margin:0;
  3.   padding:0;
  4. }
  5.  
  6. .topcontainer{
  7.   background-color: #8C847B;
  8.   height: 75px;
  9.   margin-top: 0px;
  10.   width: 100%;
  11. }
  12.  
  13. .topleft{
  14.   float:left;
  15.   height: 75px;
  16.   margin-top: 0px;
  17.   width: 450px;
  18. }
  19.  
  20. .topright{
  21.   float:right;
  22.   height: 75px;
  23.   margin-top: 0px;
  24.   width: 450px;
  25. }
  26.  
  27. .midcontainer{
  28.   width:100%;
  29.   overflow: hidden;
  30.   position: fixed;
  31.   top: 0;
  32.   right: 0;
  33.   z-index: -100;
  34. }
  35.  
  36. .topright > ul > li{
  37.     display: inline;!important
  38.     margin-top: 30px!important;
  39.     color:  #EDECEB;
  40.     font-family: 'Bellefair', serif;
  41.     font-size: 20px;!important
  42.     float: right;
  43.     padding: 35px 25px 5px 5px;
  44. }
  45.  
  46. .buttons{
  47.     font-family: 'Bellefair', serif;
  48.     background-color: #8C847B!important;
  49.     color: #EDECEB!important;
  50.     font-size: 12px;
  51.     border:none;
  52.     display: inline-block;
  53.     vertical-align:middle;
  54.     text-align: center;
  55.     height: 30px;
  56.     text-decoration: none;
  57.     transition: all 0.5s;
  58.     cursor: pointer;
  59.     border-radius: 4px;
  60. }
  61.  
  62. .button span {
  63.   cursor: pointer;
  64.   display: inline-block;
  65.   position: relative;
  66.   transition: 0.5s;
  67. }
  68.  
  69. .button span:after {
  70.   content: ' >>';
  71.   position: absolute;
  72.   opacity: 0;
  73.   top: 0;
  74.   right: -20px;
  75.   transition: 0.5s;
  76. }
  77.  
  78. .button:hover span {
  79.   padding-right: 25px;
  80. }
  81.  
  82. .button:hover span:after {
  83.   opacity: 1;
  84.   right: 0;
  85. }
  86.  
  87. #firstbutton{
  88.     margin-left: 25px;
  89. }
  90.  
  91. .topleft > img{
  92.     width: 80px;
  93.     height: 80px;
  94.     margin:0 0 0 10px;
  95.     float: left;
  96. }
  97.  
  98. .midcontainer > video{
  99.   z-index: -100;
  100.   display:block;
  101.   width:100%;
  102.   margin:0;
  103.   padding:0;
  104. }
  105.  
  106. .transbox{
  107.   background-color: rgba(223,189,139,0.3);
  108.   position: absolute;
  109.   top:0;
  110.   right:10%;
  111.   height:100vh;
  112.   width: 300px;
  113. }
  114.  
  115. .form{
  116.   padding:20px;
  117.   margin-top:125px!important;
  118. }
  119.  
  120. input{
  121.   width:80%!important;
  122.   margin-left:10px;
  123. }
  124.  
  125. @media screen and (max-width: 1100px) {
  126.   .mid_container > video{
  127.     width:1100px;
  128.   }
  129. }
Add Comment
Please, Sign In to add comment