styles.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .container {
  2. margin: 20px auto;
  3. background: #fff;
  4. border: 1px solid #ddd;
  5. padding: 30px;
  6. width: 96%;
  7. border-radius: 4px;
  8. box-sizing: border-box;
  9. /*max-width: 600px;*/
  10. }
  11. input[type="submit"],
  12. button {
  13. padding: 10px;
  14. color: white;
  15. border: none;
  16. border-radius: 3px;
  17. }
  18. .blue {
  19. background: #24d;
  20. }
  21. .red {
  22. background: #d42;
  23. }
  24. .green {
  25. background: #4b2;
  26. }
  27. .gray {
  28. background: #888;
  29. }
  30. textarea,
  31. select,
  32. input {
  33. border: 1px solid #ddd;
  34. padding: 12px;
  35. border-radius: 3px;
  36. }
  37. input.input-sm {
  38. padding: 6px;
  39. font-size: 70%;
  40. }
  41. select {
  42. background: #fcfcfc;
  43. }
  44. a,
  45. button {
  46. margin: 5px;
  47. box-sizing: border-box;
  48. }
  49. .bordure-flashy {
  50. border: 2px solid red;
  51. }
  52. #html-content h5 {
  53. margin: 20px 0 5px 0;
  54. }
  55. #html-content p {
  56. margin: 10px 0;
  57. }
  58. button.d {
  59. padding: 0;
  60. width: 32px;
  61. height: 32px;
  62. border-radius: 16px;
  63. }
  64. /**
  65. * Styles communs pour les différents exemples
  66. */
  67. a.active {
  68. font-weight: bold;
  69. color: #48c;
  70. }
  71. .cyan {
  72. background: #6ff;
  73. }
  74. .magenta {
  75. background: #f6f;
  76. }
  77. .yellow {
  78. background: #ff6;
  79. color: #444;
  80. }
  81. .orange {
  82. background: #eb6;
  83. }
  84. .bold-text {
  85. font-weight: bold;
  86. }
  87. .underlined-text {
  88. text-decoration: underline;
  89. }
  90. .text-green {
  91. color: #4b2;
  92. }
  93. .text-red {
  94. color: #b42;
  95. }
  96. .table {
  97. border-collapse: collapse;
  98. }
  99. .table tr td {
  100. border: 1px solid #aaa;
  101. padding: 2px;
  102. }
  103. ul.tab-nav {
  104. padding-left: 5px;
  105. padding-bottom: 4px;
  106. border-bottom: 1px solid #eee;
  107. }
  108. ul.tab-nav li {
  109. display:inline;
  110. padding: 6px 10px;
  111. margin-right: 5px;
  112. border-top:1px solid #ccc;
  113. border-left:1px solid #ccc;
  114. border-right:1px solid #ccc;
  115. }
  116. #qunit-header,
  117. #qunit-testrunner-toolbar {
  118. display: none;
  119. }
  120. #revert-editor {
  121. background: none;
  122. border: none;
  123. position: absolute;
  124. padding: 0 3px;
  125. top: 0;
  126. left: 0;
  127. color: red;
  128. font-size: 11px;
  129. }