Advertisement
OverSkillers

Untitled

Feb 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.03 KB | None | 0 0
  1. p{
  2.   font-family: normal;
  3.   font-style: normal;
  4.   font-weight: bold;
  5.   color: white;
  6.   position: relative;;
  7.   left: 575px;
  8.   top: 150px;
  9.   text-align: justify;
  10.   font-size: small;
  11.   max-width: 200px;
  12. }
  13.  
  14. texto1{
  15.   font-family: normal;
  16.   text-align: justify;
  17.   color: black;
  18.   position: absolute;
  19.   width: auto;
  20.   height: auto;
  21.   top: 85%;
  22.   left: 15%;
  23.   right : 10%;
  24.   margin-left: -50px;
  25.   margin-top: -25px;
  26. }
  27.  
  28. /*texto2{
  29.   font-style: normal;
  30.   text-align: justify;
  31.   color: black;
  32.   position: absolute;
  33.   width: auto;
  34.   height: auto;
  35.   top: 95%;
  36.   left: 15%;
  37.   right : 10%;
  38.   margin-left: -50px;
  39.   margin-top: -25px;
  40. }*/
  41.  
  42.  
  43. figure{
  44.   animation-name: carros;
  45.   animation-duration: 5s;
  46.   animation-timing-function: linear;
  47.   animation-iteration-count: infinite;
  48.   height: 268px;
  49.   width: 370px;
  50.   align-content: center;
  51.   background-position: center ;
  52.   background-size: contain;
  53.   background-repeat: no-repeat;
  54.   position: relative;
  55.   left: 20px;
  56.   bottom: 100px;
  57. }
  58.  
  59. header{
  60.   margin: auto;
  61.   height: 400px;
  62.   width: 65%;
  63.   background: url('resources/logo.svg') 50% 50%/100% 400px no-repeat, url('resources/backgr.png') 50% 50%/100% 400px no-repeat, linear-gradient(to bottom left, #141035 ,#47486A) ;
  64.   border-radius: 15px;
  65. }
  66.  
  67. button {
  68.     background: #47486A;
  69.     color: #fff;
  70.     font-family: Sans-serif;
  71.     font-size: 20px;
  72.     height: auto;
  73.     width: 21%;
  74.     line-height: 60px;
  75.     margin: 4px;
  76.     text-align: center;
  77.     border: 0;
  78.     transition: all 0.3s ease 0s;
  79.     opacity: 1;
  80.     border-radius: 12px;
  81.     align-items: baseline;
  82.     left: 20px;
  83. }
  84.  
  85. center{
  86.   bottom: 150px;
  87. }
  88.  
  89. button:hover {
  90.   background: #141035;
  91. }
  92.  
  93. @keyframes carros {
  94.  
  95.   0%{
  96.     opacity : 1;
  97.     background-image: url("resources/view1.png");
  98.   }
  99.   33%{
  100.     opacity : 1;
  101.     background-image: url("resources/view2.png");
  102.   }
  103.   66%{
  104.     opacity: 1;
  105.     background-image: url("resources/view3.png");
  106.   }
  107.   100%{
  108.     opacity: 1;
  109.     background-image: url("resources/view1.png");
  110.   }
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement