Subversion Repositories wimsdev

Rev

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

  1. /* ****** SEQUENCE ******** */
  2. .wims_seq, .wims_sheet {
  3.   position: relative;
  4.   /*padding: 2.5em 0 0 1em;*/
  5.   border: thin solid;
  6.   border-bottom: 2px solid #888;
  7.   border-right: 2px solid #888;
  8. }
  9.  
  10. .wims_title_seq{
  11.   margin: 0;
  12.   padding:.5em;
  13.   border-bottom:thin solid gray;
  14.   font-size: 1.3em;
  15. }
  16.  
  17. .wims_work_list a {text-decoration: none}
  18. .wims_work_list a:hover {text-decoration:underline}
  19.  
  20. .wims_seq .wims_desc_item {color:#804000}
  21. .wims_seq .wims_status{font-size: 80%}
  22.  
  23. .wims_seq_id{
  24.   font-weight:bold;
  25.   padding-right:.3em;
  26.   border-right:1px solid;
  27. }
  28. .wims_content_seq, .wims_comment_item{
  29.   padding:.5em;
  30. }
  31. .wims_work_legend li{
  32.   padding: 2px .3em;
  33. }
  34.  
  35.  
  36. /* numero pour les item d'une sequence */
  37. .wims_seq_item_n {
  38.     padding: 3px 8px;
  39.     border:1px solid gray;
  40.     border-radius: 20px;
  41. }
  42.  
  43. /* Small screens */
  44. /* max-width 640px, mobile-only styles, use when QAing mobile issues */
  45. @media only screen and (max-width: 40em) {
  46.   .wims_seq, .wims_sheet {margin:3px 0;}
  47. }
  48.  
  49. /* Small and Medium screens */
  50. /* max-width 1024px  */
  51. @media only screen and (max-width: 64em) {}
  52.  
  53. /* Medium screens */
  54. /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
  55. @media only screen and (min-width: 40.063em) and (max-width: 64em) {}
  56.  
  57. /* Medium and Large screens */
  58. /* min-width 641px */
  59. @media only screen and (min-width: 40.063em) {
  60.   .wims_seq, .wims_sheet {
  61.     margin:10px;
  62.   }
  63. }
  64.  
  65.  
  66. /* min-width 1025px, large screens */
  67. /* Large screens */
  68. @media only screen and (min-width: 64.063em) {}
  69.  
  70. /* ****** END OF SEQUENCES ******** */
  71.