Subversion Repositories wimsdev

Rev

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

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