demo.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @charset "UTF-8";
  2. /*
  3. * jQuery File Upload Demo CSS 1.1.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. body {
  13. max-width: 750px;
  14. margin: 0 auto;
  15. padding: 1em;
  16. font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
  17. font-size: 1em;
  18. line-height: 1.4em;
  19. background: #222;
  20. color: #fff;
  21. -webkit-text-size-adjust: 100%;
  22. -ms-text-size-adjust: 100%;
  23. }
  24. a {
  25. color: orange;
  26. text-decoration: none;
  27. }
  28. img {
  29. border: 0;
  30. vertical-align: middle;
  31. }
  32. h1 {
  33. line-height: 1em;
  34. }
  35. blockquote {
  36. padding: 0 0 0 15px;
  37. margin: 0 0 20px;
  38. border-left: 5px solid #eee;
  39. }
  40. table {
  41. width: 100%;
  42. margin: 10px 0;
  43. }
  44. .fileupload-progress {
  45. margin: 10px 0;
  46. }
  47. .fileupload-progress .progress-extended {
  48. margin-top: 5px;
  49. }
  50. .error {
  51. color: red;
  52. }
  53. @media (min-width: 481px) {
  54. .navigation {
  55. list-style: none;
  56. padding: 0;
  57. }
  58. .navigation li {
  59. display: inline-block;
  60. }
  61. .navigation li:not(:first-child):before {
  62. content: "| ";
  63. }
  64. }