Subversion Repositories wimsdev

Rev

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

Rev Author Line No. Line
8693 obado 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;
8700 obado 12
  padding: .5em;
8693 obado 13
}
14
 
8700 obado 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
 
8693 obado 22
.wims_widget_box .title_box .wims_title {
23
  /* Text shadow for light text on dark background */
11914 bpr 24
  /*text-shadow: -1px -1px 1px rgba(0, 0, 0, .5), 1px 1px 1px rgba(0, 0, 0, .5);*/
8693 obado 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 ;
10468 obado 35
  min-height: 6em;
36
  box-sizing: border-box;
8693 obado 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
}