Subversion Repositories wimsdev

Rev

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

  1. /** Default widget_boxes style */
  2.  
  3. .mode_popup{
  4.   padding:1em;
  5. }
  6.  
  7. .wims_widget_box {
  8.   margin: 5px;
  9.   max-width: 900px;
  10. }
  11.  
  12. .wims_widget_box .title_box {
  13.   border-radius: 5px 5px 0 0 ;
  14.   border: 1px solid #BBB;
  15.   border-bottom-width: 0;
  16.   margin: 0;
  17.   padding: .5em;
  18. }
  19.  
  20. .wims_widget_box .title_box h1,
  21. .wims_widget_box .title_box h2,
  22. .wims_widget_box .title_box h3  {
  23.   margin-top: 2px;
  24.   margin-bottom: 0;
  25. }
  26.  
  27. .wims_widget_box .title_box .wims_title {
  28.   /* Text shadow for light text on dark background */
  29.   /*text-shadow: -1px -1px 1px rgba(0, 0, 0, .5), 1px 1px 1px rgba(0, 0, 0, .5);*/
  30. }
  31.  
  32. .wims_widget_box .box_content {
  33.   display: block;
  34.   background-color: #fff;
  35.   margin: 0;
  36.   padding: .5em;
  37.   clear: both;
  38.   /*text-align: center;*/
  39.   border: 1px solid #BBB;
  40.   border-radius: 0 0 5px 5px ;
  41.   min-height: 6em;
  42.   box-sizing: border-box;
  43. }
  44.  
  45.  
  46. /* Small screens */
  47. @media only screen and (max-width: 40em) {
  48.   .medium_size {
  49.     margin: 5px;
  50.     float:none;
  51.   }
  52. }
  53.  
  54. /* Medium screens */
  55. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  56.   .medium_size {
  57.     /*width:100%;*/
  58.     width:50%;
  59.     /*max-width: 40em;*/
  60.     margin: 5px auto;
  61.   }
  62. }
  63.  
  64. /* Large screens */
  65. @media only screen and (min-width: 64.063em) {
  66.   .medium_size {
  67.     width:50%;
  68.     /*float: left;*/
  69.     margin: 0;
  70.     padding: .5em;
  71.     box-sizing:border-box;
  72.   }
  73. }
  74.