Advertisement
eulaliaaires

leticia css

Aug 13th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.31 KB | None | 0 0
  1. body{
  2.     margin: 0;
  3. }
  4. .navbar{
  5.     display: flex;
  6.     width: 100%;
  7.     height: 118px;
  8.     justify-content: space-around;
  9.     position: fixed;
  10.     top: 0;
  11. }
  12. .navbar img{
  13.     display: flex;
  14.     height: 76px;
  15.     padding-left: 96px;
  16.     padding-top: 18px;
  17. }
  18. .navbar .menu{
  19.     display: flex;
  20.     float: right;
  21.     flex-direction: row;
  22.     text-decoration: none;
  23.     padding-right: 35px;
  24.     list-style: none;
  25.     color: #ffffff;
  26.     padding-top: 30px;
  27. }
  28. #teste{
  29.     width: 100vw;
  30.     height:1500px;
  31.     background: #FFAA2A;
  32.     align-items: center;
  33.     justify-content: center;
  34.     display: flex;
  35. }
  36. #resre2{
  37.     width: 100vw;
  38.     height:1500px;
  39.     background: red;
  40.     align-items: center;
  41.     justify-content: center;
  42.     display: flex;
  43. }
  44. .white_navbar{
  45.     height: 75px;
  46.     background: transparent;
  47.     /*animation: navbar 0.2s linear forwards;*/
  48.     transition: all 0.6s ease;
  49.     z-index: 10;
  50. }
  51. .white_navbar ul{
  52.     display: flex;
  53.     float: right;
  54.     flex-direction: row;
  55.     text-decoration: none;
  56.     padding-right: 35px;
  57.     list-style: none;
  58.     color: #ffffff;
  59.     padding-top: 21px;
  60. }
  61. .white_navbar img{
  62.     display: flex;
  63.     height: 55px;
  64.     padding-left: 96px;
  65.     padding-top: 11px;
  66. }
  67. .white_navbar a:visited{
  68.     text-decoration: #FFAA2A;
  69. }
  70. .black_navbar{
  71.     height: 75px;
  72.     background: rgba(0,0,0);
  73.     /*animation: navbar 0.2s linear forwards;*/
  74.     transition: all 0.6s ease;
  75.     z-index: 10;
  76. }
  77. .black_navbar ul{
  78.     display: flex;
  79.     float: right;
  80.     flex-direction: row;
  81.     text-decoration: none;
  82.     padding-right: 35px;
  83.     list-style: none;
  84.     color: #ffffff;
  85.     padding-top: 21px;
  86. }
  87. .black_navbar img{
  88.     display: flex;
  89.     height: 55px;
  90.     padding-left: 96px;
  91.     padding-top: 11px;
  92. }
  93. .black_navbar a:visited{
  94.     text-decoration: #FFAA2A;
  95. }
  96. .navbar li{
  97.     display: flex;
  98.     text-decoration: none;
  99.     padding-right: 34px;
  100.     font-size: 11px;
  101.     font-family: 'Alegreya Sans';
  102.     font-weight: 800;
  103.     letter-spacing: 1px;
  104.  
  105. }
  106. .navbar a{
  107.     text-decoration: #ffffff;
  108.     color: #ffffff;
  109. }
  110. .navbar a:visited{
  111.     text-decoration: #FFAA2A;
  112. }
  113. .banner .title{
  114.     display: flex;
  115.     justify-content: center;
  116.     align-items: center;
  117.     margin: 0px;
  118.     padding: 0px;
  119.     font-family: 'Vidaloka';
  120.     font-weight: 400;
  121.     font-size: 50px;
  122.     color: #ffffff;
  123. }
  124. .banner .subtitle{
  125.     display: flex;
  126.     padding-bottom: 0px;
  127.     margin-bottom: 0px;
  128.     margin: 0;
  129.     padding-top: 12px;
  130.     font-family: 'Alegreya Sans';
  131.     font-weight: 400;
  132.     font-size: 17px;
  133.     color: #ffffff;
  134. }
  135. .banner .watch_video{
  136.     text-decoration: none;
  137.     margin-top: 72px;
  138.     font-family: 'Alegreya Sans', sans-serif;
  139.     font-weight: 900;
  140.     font-size: 12px;
  141.     color: #FFAA2A;
  142.     width: 120px;
  143.     height: 100px;
  144.     justify-content: center;
  145.     align-items: center;
  146.     position: absolute;
  147.     display: flex;
  148. }
  149. .banner{
  150.     display: flex;
  151.     height: 100vh;
  152.     flex-direction: column;
  153.     justify-content: center;
  154.     align-items: center;
  155.     background: linear-gradient( rgba(0,0,0,.7),rgba(0,0,0,.7)),url("../../static/img/banner.jpg");
  156.     background-repeat: no-repeat;
  157.     background-size: cover;
  158. }
  159. .banner .clip{
  160.     -webkit-clip-path: ellipse(19% 13% at 50% 100%);
  161.     clip-path: ellipse(4% 7% at 50% 100%);
  162.     background:#FFAA2A;
  163.     display: flex;
  164.     width: 100%;
  165.     height: 100%;
  166.     position: absolute;
  167. }
  168. .banner .clip_mobile{
  169.     display: none;
  170.     color: #FFAA2A;
  171.     font-size: 30px;
  172.     position: absolute;
  173.     align-items: center;
  174.     width: 100%;
  175. }
  176.  
  177. .banner .video_container{
  178.     display: none;
  179.     flex-direction: column;
  180.     align-items: center;
  181.     justify-content: center;
  182.     position: absolute;
  183.     width: 100%;
  184.     height: 100%;
  185. }
  186. .scroll_clip{
  187.     color: #000000;
  188.     align-items: center;
  189.     position: absolute;
  190.     width: 120px;
  191.     height: 100%;
  192.     align-items: flex-end;
  193.     justify-content: center;
  194.     margin-right: 300px;
  195.     display: flex;
  196.     font-family: 'Alegreya Sans';
  197.     font-weight: 900;
  198.     font-size: 11px;
  199. }
  200. .play_icon{
  201.     padding-left: 3px;
  202. }
  203. .hamburger_menu_icon{
  204.     float: right;
  205.  
  206. }
  207. .hamburger_menu_icon img{
  208.     display: flex;
  209.     float: right;
  210.     display: none;
  211.     height: 32px;
  212. }
  213. .menu_hamburger{
  214.     display: none;
  215.     flex-direction: column;
  216.     list-style: none;
  217.     background: #000000;
  218.     width: 100vw;
  219.     height: 100vh;
  220.     z-index: 15;
  221. }
  222. .menu_hamburger li{
  223.  
  224.     text-decoration: #ffffff;
  225.     padding-bottom: 20px;
  226. }
  227.  
  228.  
  229.  
  230.  
  231. /*//////////// MOBILE //////////*/
  232.  
  233. @media screen and (max-width: 768px){
  234.     .banner{
  235.         align-items: flex-start;
  236.     }
  237.     .banner .title{
  238.         padding-left: 20px;
  239.         width: 30%;
  240.         justify-content: left;
  241.     }
  242.     .banner .subtitle{
  243.         padding-left: 20px;
  244.         float: left;
  245.         font-size: 15px;
  246.     }
  247.     .banner .watch_video{
  248.         padding-left: 20px;
  249.         float: left;
  250.         padding-top: 130px;
  251.         font-size: 13px;
  252.     }
  253.     .banner .clip{
  254.         display: none;
  255.     }
  256.     .banner .clip_mobile{
  257.         display: flex;
  258.         justify-content: center;
  259.         align-items: flex-end;
  260.         height: 100%;
  261.     }
  262.     .navbar{
  263.         justify-content: space-around;
  264.         padding-left: 15px;
  265.     }
  266.     .navbar .menu{
  267.         display: none;
  268.     }
  269.     .navbar img{
  270.         float: left;
  271.         padding-left: 0;
  272.     }
  273.     .hamburger_menu_icon img{
  274.         display: flex;
  275.         float: right;
  276.         padding-top: 30px;
  277.         padding-left: 160px;
  278.         height: 32px;
  279.     }
  280.     .hamburger_menu_icon{
  281.         float: right;
  282.         padding-right: 30px;
  283.     }
  284.     .menu_hamburger{
  285.         display: flex;
  286.     }
  287.    
  288. }
  289. @media screen and (max-width: 1049px){
  290.     .banner .clip{
  291.         -webkit-clip-path: ellipse(19% 13% at 50% 100%);
  292.         clip-path: ellipse(7% 5% at 50% 100%);
  293.     }
  294.     .navbar li{
  295.         font-size: 10px;
  296.     }
  297. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement