Subversion Repositories wimsdev

Rev

Rev 16864 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 16864 Rev 17966
Line 29... Line 29...
29
  margin-bottom: 0;
29
  margin-bottom: 0;
30
}
30
}
31
 
31
 
32
.wims_widget_box .title_box .wims_title {
32
.wims_widget_box .title_box .wims_title {
33
  /* Text shadow for light text on dark background */
33
  /* Text shadow for light text on dark background */
34
  /*text-shadow: -1px -1px 1px rgba(0, 0, 0, .5), 1px 1px 1px rgba(0, 0, 0, .5);*/
34
  /*text-shadow: -1px -1px 1px rgb(0 0 0 / .5), 1px 1px 1px rgb(0 0 0 / .5);*/
35
}
35
}
36
 
36
 
37
.wims_widget_box .box_content {
37
.wims_widget_box .box_content {
38
  display: block;
38
  display: block;
39
  background-color: #fff;
39
  background-color: #fff;
Line 50... Line 50...
50
 
50
 
51
/** details/summary html5 tags (accordions)  **/
51
/** details/summary html5 tags (accordions)  **/
52
details {
52
details {
53
  margin-bottom: .5rem;
53
  margin-bottom: .5rem;
54
  padding: 0 .5rem .5rem .5rem;
54
  padding: 0 .5rem .5rem .5rem;
55
  box-shadow: 0 .1rem 1rem -.5rem rgba(0,0,0,.4);
55
  box-shadow: 0 .1rem 1rem -.5rem rgb(0 0 0 / .4);
56
}
56
}
57
details summary ~ div{
57
details summary ~ div{
58
  opacity: 0;
58
  opacity: 0;
59
  transform: translateY(-10px);
59
  transform: translateY(-10px);
60
  transition: .6s opacity ease,.6s transform ease;
60
  transition: .6s opacity ease,.6s transform ease;