Emmes

Categorias en Pestañas (CSS)

Sep 14th, 2019
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1. /***Emme Categorias en Pestañas***/
  2. .mm-categorias > input,
  3. .mm-categorias .forabg {
  4.   display: none;
  5. }
  6. .mm-categorias {
  7.   position: relative;
  8.   border-top: 10px solid transparent;
  9. }
  10. .mm-categorias > input:checked + label + .forabg {
  11.   display: block;
  12. }
  13. .mm-categorias > label ~ label {
  14.   position: absolute;
  15.   top: 0;
  16.   left: 165px;
  17. }
  18. .mm-categorias > label ~ label:nth-of-type(3) {
  19.   left: 330px;
  20. }
  21. .mm-categorias > label ~ label:nth-of-type(4) {
  22.   left: 495px;
  23. }
  24. .mm-categorias > label ~ label:nth-of-type(5) {
  25.   left: 660px;
  26. }
  27. /**Estilo Botones**/
  28. .mm-categorias > label {
  29.   background: #fff;
  30.   display: block;
  31.   width: 160px;
  32.   text-align: center;
  33.   opacity: 0.6;
  34. }
  35. .mm-categorias > label h2,
  36. .mm-categorias > label h1 {
  37.   font-size: 12px;
  38.   text-transform: uppercase;
  39.   padding: 5px;
  40. }
  41. /**Estilo Boton Activo**/
  42. .mm-categorias > label:hover {
  43.   opacity: 0.8;
  44. }
  45. .mm-categorias > input:checked + label {
  46.   margin-top: -10px;
  47.   padding: 5px 0;
  48.   opacity: 1;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment