Subversion Repositories wimsdev

Rev

Rev 13469 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* General */
  2. body {
  3.   margin:0;
  4.   font-family: arial, verdana, helvetica, sans-serif;
  5. }
  6.  
  7. /*li {margin-bottom: 8px;}*/
  8.  
  9. a:hover {text-decoration:none;}
  10. a:hover img{opacity:.75;}
  11.  
  12. .table-scroll {
  13.   overflow-x: auto; }
  14.  
  15. .wimsbody {
  16.   padding : 5px 20px;
  17. }
  18.  
  19. /** Affichage tres contrasté pour des fins de debogage : **/
  20. .debug{
  21.   background-color: black;
  22.   padding:0.5em;
  23.   color:darkorange;
  24.   font-family: monospace;
  25. }
  26. .debug ul{
  27.   font-size: 105%;
  28. }
  29.  
  30. .wims_seq, .wims_sheet {
  31.   background-image: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 100%);
  32. }
  33.  
  34. .wims_warning{
  35.   color:brown;
  36.   font-weight:bold;
  37. }
  38. /* warning de type "bloc" */
  39. div.wims_warning{
  40.   padding:.5em 20px
  41. }
  42.  
  43.  
  44. #docnavigation{
  45.   /*margin-left: 11em;*/
  46.   background-color: aliceblue;
  47. }
  48. /*#docnavigation .menuitem>a{color:#000;}*/
  49.  
  50. span.tooltip {color:#A52A2A;}
  51.  
  52. /* Small screens */
  53. @media only screen and (max-width: 40em) {
  54.   .wimsbody {
  55.     padding : 2px 5px;
  56.   }
  57. } /* max-width 640px, mobile-only styles, use when QAing mobile issues */
  58.  
  59. /* Medium screens */
  60. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  61.   /*.wimsbody {
  62.     padding : 0 10px;
  63.   }*/
  64. } /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
  65.  
  66. /* Large screens */
  67. @media only screen and (min-width: 64.063em) {
  68.  
  69.   body {
  70.     margin: 5px;
  71.     padding: 0 10px 10px 10px;
  72.   }
  73.   .wimsbody, .breadcrumbs li:first-child {
  74.     margin-left : 170px;
  75.   }
  76.  
  77. } /* min-width 1025px, large screens */
  78.