Le repo des sources pour le site web des JM2L
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

37 linhas
655 B

  1. @charset "UTF-8";
  2. /*
  3. * jQuery File Upload Plugin CSS 1.3.0
  4. * https://github.com/blueimp/jQuery-File-Upload
  5. *
  6. * Copyright 2013, Sebastian Tschan
  7. * https://blueimp.net
  8. *
  9. * Licensed under the MIT license:
  10. * http://www.opensource.org/licenses/MIT
  11. */
  12. .fileinput-button {
  13. position: relative;
  14. overflow: hidden;
  15. }
  16. .fileinput-button input {
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. margin: 0;
  21. opacity: 0;
  22. -ms-filter: 'alpha(opacity=0)';
  23. font-size: 200px;
  24. direction: ltr;
  25. cursor: pointer;
  26. }
  27. /* Fixes for IE < 8 */
  28. @media screen\9 {
  29. .fileinput-button input {
  30. filter: alpha(opacity=0);
  31. font-size: 100%;
  32. height: 100%;
  33. }
  34. }