eulaliaaires

Banner2.css

Jun 19th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.73 KB | None | 0 0
  1. body{
  2.     margin: 0px;
  3. }
  4. .opacity{
  5.     width: 100vw;
  6.     height: 100vh;
  7.     background-color: rgba(0, 0, 0, 0.5);
  8.     position: absolute;
  9. }
  10. .banner{
  11.     display: flex;
  12.     flex-direction: column;
  13.     justify-content: center;
  14.     align-items: center;
  15.     position: relative;
  16.     width: 100vw;
  17.     height: 100vh;
  18.     background: linear-gradient( rgba(0,0,0,.3),rgba(0,0,0,.3)),url("banner.jpg");
  19.     background-size: cover;
  20.     background-position: center center;
  21.     background-repeat: no-repeat;
  22. }
  23. .menu{
  24.     display: flex;
  25.     flex-direction: row;
  26.     align-items: center;
  27.     justify-content: flex-end;
  28.     height: 100%;
  29. }
  30. ul{
  31.     /*display none pra desaparecer as coisas*/
  32.     display: flex;
  33.     justify-content: space-between;
  34.     margin: 40px;
  35.     list-style: none;
  36.     float: right;
  37.     width: 332px;
  38. }
  39. ul li{
  40.     display: inline;
  41. }
  42. ul li a{
  43.     padding-right: 10px;
  44.     display: inline-block;
  45.     text-decoration: none;
  46.     font-family: 'Source Sans Pro', sans-serif;
  47.     font-weight: 600;
  48.     font-size: 18px;
  49.     color: #ffff;
  50. }
  51. .navbar{
  52.     width: 100%;
  53.     justify-content: space-between;
  54.     position: absolute;
  55.     top: 0;
  56. }
  57. .logomarca{
  58.     display: inline-flex;
  59.     align-items: center;
  60.     height: 100%;
  61. }
  62.  
  63. #logo{
  64.     margin: 20px 0 20px 40px;
  65.     width: 74px;
  66.     float: left;
  67. }
  68. .text{
  69.     display: flex;
  70.     align-items: center;
  71.     justify-content: center;
  72.     margin-top: 73px;
  73.     color: #ffff;
  74.     font-size: 54px;
  75.     font-weight: 400;
  76.     font-family:'Source Sans Pro', sans-serif;
  77.     text-align: center;
  78.     top: 41%;
  79.     left: 21%;
  80.     width: 59%;
  81. }
  82. .style{
  83.     margin-right: 4px;
  84.     margin-left: 3px;
  85.     font-family:'Putumayo', sans-serif;
  86.     font-size: 24px;
  87.     color: #ffff;
  88. }
  89. .style2{
  90.     font-family: 'Putumayo', sans-serif;
  91.     font-size: 27px;
  92.     color: #ffff;
  93. }
  94. @font-face{
  95.     font-family: Putumayo;
  96.     src: url('Putumayo.ttf');
  97. }
  98. .button_banner{
  99.     display: flex;
  100.     flex-direction: column;
  101.     justify-content: center;
  102.     align-items: center;
  103.     width: 124px;
  104.     height: 30px;
  105.     background-color:rgba(8,162,132,1.8);
  106.     color: #ffff;
  107.     font-family: 'Source Sans Pro', sans-serif;
  108.     font-weight: 600;
  109.     border-radius: 3px;
  110.     margin-top: 40px;
  111.     text-decoration: none;
  112. }
  113. .button_banner a{
  114.     width: 124px;
  115.     text-align: center;
  116.     display: block;
  117.     text-decoration: none;
  118.     color: #ffff;
  119. }
  120.  
  121. @media(orientation: portrait),(max-width: 710px){
  122.     #logo{
  123.         margin: 20px 0 20px 20px;
  124.         width: 57px;
  125.     }
  126.     .style{
  127.         font-size: 21px;
  128.     }
  129.     .style2{
  130.         font-size: 22px;
  131.     }
  132.     .text{
  133.         font-size: 35px;  
  134.     }
  135.     ul{
  136.         display: none;
  137.     }
  138. }
Advertisement
Add Comment
Please, Sign In to add comment