Subversion Repositories wimsdev

Rev

Rev 7943 | Rev 9551 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* SHEET STYLES */
  2.  
  3. .wims_sheet_title {text-align:center;}
  4.  
  5. .wims_sheet_desc, .wims_work_desc, .wims_vote_desc, .wims_exam_desc, .wims_doc_desc {
  6.   padding:.5em;
  7.   font-style: italic;
  8.   display: block;
  9. }
  10.  
  11. .wims_user_sheet .wims_user_info {
  12.  margin-left:30%;
  13. }
  14.  
  15. ul.wims_work_list, ul.wims_user_sheet{
  16.    list-style:none;
  17.    padding:.5em;
  18.    margin:0;
  19. }
  20.  
  21. .wims_work_list>li, .wims_user_sheet>li, .wims_sheet_list>li {
  22.     display: inline-block;
  23.     border:1px solid gray;
  24.     border-radius: 5px;
  25.     padding:1em;
  26.     padding-bottom: 1.3em;
  27.     margin-right: 3px;
  28.     margin-bottom: 1em;
  29.     width:46%;
  30.     min-width: 20em;
  31.     min-height:3em;
  32.     vertical-align:top;
  33. }
  34. /*.wims_sheet .wims_sheet_list li {
  35.     padding:1em;
  36.     border:1px solid gray;
  37.     background-color: #FDFDFD;
  38.     border-radius: 5px;
  39.     margin: 3px;
  40.     display: inline-block;
  41.     width:45%;
  42. }*/
  43.  
  44. /* Default colors for sequences */
  45. .wims_sheet_item { background-color:#CCF;}
  46. .wims_doc_item   { background-color:#99F;}
  47. .wims_vote_item  { background-color:#66F;}
  48. .wims_exam_item  { background-color:#9CF;}
  49.  
  50. .wims_exo_item   {
  51.   /*background-color:#FC9;*/
  52.   background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .25)) ;
  53. ;
  54. }
  55.  
  56. .wims_sheet_item, .wims_doc_item, .wims_vote_item, .wims_exam_item, .wims_exo_item
  57. {position:relative;}
  58.  
  59. /* default style for scores. will be customised by score colors */
  60. .wims_sheet_score {
  61.     font-weight:bold;
  62.     text-align:center;
  63.     margin:1px;
  64.     padding:5px;
  65.     border : 3px solid #666;
  66.     background-color: #FFF;
  67.     border-radius: 3px;
  68. }
  69.  
  70. div.menuitem.score{
  71.     background-color: white;
  72.     color: black;
  73.     border: 1px solid black;
  74.     padding: .5em;
  75.     width:80%;
  76.     margin:auto;
  77. }
  78.  
  79. .wims_user_info{
  80.     position: absolute;
  81.     top: 0;
  82.     right: .5em;
  83. }
  84. .wims_exo_item .wims_user_info{
  85.     top:auto;
  86.     bottom: 0;
  87. }
  88.  
  89. /* could be used
  90. .wims_sheet_weight{}
  91. .wims_style_expire{}
  92. */
  93.  
  94. /* Small and Medium screens */
  95. /* max-width 1024px  */
  96. @media only screen and (max-width: 64em) {
  97.    .wims_work_list li, .wims_user_sheet li, .wims_sheet_list li{
  98.         width:inherit;
  99.         display:block;
  100.     }
  101. }
  102.  
  103. /* Small screens */
  104. /* max-width 640px, mobile-only styles, use when QAing mobile issues */
  105. @media only screen and (max-width: 40em) { }
  106.  
  107. /* Medium screens */
  108. /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
  109. @media only screen and (min-width: 40.063em) and (max-width: 64em) { }
  110.  
  111. /* min-width 1025px, large screens */
  112. /* Large screens */
  113. @media only screen and (min-width: 64.063em) { }
  114.  
  115.