Le repo des sources pour le site web des JM2L
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

37 行
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. }