Subversion Repositories wimsdev

Rev

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