Subversion Repositories wimsdev

Rev

Rev 8700 | Rev 12590 | 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.   background-color: #fff;
  29.   margin: 0;
  30.   padding: .5em;
  31.   clear: both;
  32.   /*text-align: center;*/
  33.   border: 1px solid #BBB;
  34.   border-radius: 0 0 5px 5px ;
  35.   min-height: 6em;
  36.   box-sizing: border-box;
  37. }
  38.  
  39.  
  40. /* Small screens */
  41. @media only screen and (max-width: 40em) {
  42.   .medium_size {
  43.     margin: 5px 0;
  44.   }
  45. }
  46.  
  47. /* Medium screens */
  48. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  49.   .medium_size {
  50.     /*width:100%;*/
  51.     max-width: 40em;
  52.     margin: 5px auto;
  53.   }
  54. }
  55.  
  56. /* Large screens */
  57. @media only screen and (min-width: 64.063em) {
  58.   .medium_size {
  59.     width:50%;
  60.     float: left;
  61.     margin: 0;
  62.     padding: .5em;
  63.     box-sizing:border-box;
  64.   }
  65. }
  66.