Advertisement
Qhuinn

firma nick

Apr 2nd, 2016
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.33 KB | None | 0 0
  1. .firma-na {
  2.   width: 245px;
  3.   height: 131px;
  4.   border: 10px solid #000;
  5.   position: relative;
  6.   overflow: hidden;
  7. }
  8.  
  9. .firma-na .text-interior {
  10.   width: 235px;
  11.   padding: 5px;
  12.   margin-left: 154px;
  13.   line-height: 100%;
  14. }
  15.  
  16. .text-interior .frase-grande {
  17.   font-size: 30px;
  18.   font-family: Mr De Haviland;
  19.   padding-bottom: 5px;
  20.   color: #fff;
  21.   padding-top: 8px;
  22.   border-bottom: 1px solid #fff;
  23.   margin-bottom: 3px;
  24. }
  25.  
  26. .text-interior .frase-chica {
  27.   color: #fff;
  28.   font-size: 10px;
  29.   line-height: 100%;
  30.   text-transform: uppercase;
  31.   font-weight: bold;
  32.   font-family: calibri;
  33.   letter-spacing: 1px;
  34. }
  35.  
  36. .texto {
  37.   transition: 1s;
  38.   background: #000;
  39.   width: 500px;
  40.   overflow: hidden;
  41.   height: 0px;
  42.   transform: rotate(27deg);
  43.   position: absolute;
  44.   top: 25px;
  45.   left: -205px;
  46. }
  47.  
  48. .firma-na:hover .texto {
  49.   transition: 1s;
  50.   opacity: 0.7;
  51.   transform: rotate(0deg);
  52.   transition-delay: 0.5s;
  53.   height: 80px;
  54. }
  55.  
  56. .muevelo1 {
  57.   opacity: 0.4;
  58.   background: #fff;
  59.   transform: rotate(27deg);
  60.   position: absolute;
  61.   top: -250px;
  62.   width: 300px;
  63.   height: 120px;
  64.   transition: 0.5s;
  65.   transition-delay: 1s;
  66. }
  67.  
  68. .firma-na:hover .muevelo1 {
  69.   top: -50px;
  70.   transition: 0.5s;
  71. }
  72.  
  73. .muevelo2 {
  74.   opacity: 0.4;
  75.   background: #fff;
  76.   transform: rotate(27deg);
  77.   position: absolute;
  78.   transition: 0.5s;
  79.   transition-delay: 1s;
  80.   bottom: -250px;
  81.   left: -48px;
  82.   width: 300px;
  83.   height: 120px;
  84. }
  85.  
  86. .firma-na:hover .muevelo2 {
  87.   bottom: -48px;
  88.   transition: 0.5s;
  89. }
  90.  
  91. /* latin-ext */
  92. @font-face {
  93.   font-family: 'Mr De Haviland';
  94.   font-style: normal;
  95.   font-weight: 400;
  96.   src: local('Mr De Haviland Regular'), local('MrDeHaviland-Regular'), url(https://fonts.gstatic.com/s/mrdehaviland/v5/fD8y4L6PJ4vqDk7z8Y8e2xy7hr70KmhIxk2PT-gbMvg.woff2) format('woff2');
  97.   unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  98. }
  99. /* latin */
  100. @font-face {
  101.   font-family: 'Mr De Haviland';
  102.   font-style: normal;
  103.   font-weight: 400;
  104.   src: local('Mr De Haviland Regular'), local('MrDeHaviland-Regular'), url(https://fonts.gstatic.com/s/mrdehaviland/v5/fD8y4L6PJ4vqDk7z8Y8e2xKslWWn1MxsLfxBDz9WLj0.woff2) format('woff2');
  105.   unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement