eulaliaaires

Banner.css

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