Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
/* Table styling for content types to imitate ckeditor 5 */
2
.h5p-iframe {
3
  /* The figure around the table */
4
  figure.table {
5
    display: table;
6
    table-layout: fixed;
7
    margin: 0 auto;
8
    padding: 0;
9
    float: left;
10
 
11
    /* The actual table */
12
    table {
13
      border-collapse: collapse;
14
      height: 100%;
15
      width: 100%;
16
      border-spacing: 0;
17
      border-width: 1px;
18
      border-color:  #494949;
19
 
20
      td, th {
21
        padding: 1px;
22
        border-color:  #494949;
23
        border-bottom-style: solid;
24
      }
25
 
26
      td {
27
        border-width: 0.083em;
28
      }
29
 
30
      th {
31
        text-align: left;
32
        border-width: .167em;
33
      }
34
 
35
      tr:last-child > td {
36
        border-bottom-style: none;
37
      }
38
    }
39
 
40
    figcaption {
41
      background-color: transparent;
42
      caption-side: top;
43
      color: #333;
44
      display: table-caption;
45
      font-size: .75em;
46
      outline-offset: -1px;
47
      padding: .6em;
48
      text-align: center;
49
      word-break: break-word;
50
    }
51
  }
52
 
53
  .table-overflow-protection {
54
    clear: both;
55
  }
56
}