OLD | NEW |
(Empty) | |
| 1 body { |
| 2 margin: 20px; |
| 3 } |
| 4 |
| 5 h1 { |
| 6 -webkit-padding-start: 75px; |
| 7 background-image: url('shared/images/history_section.png'); |
| 8 background-position: left; |
| 9 background-repeat: no-repeat; |
| 10 font-size: 156%; |
| 11 font-weight: bold; |
| 12 margin: 0; |
| 13 padding-bottom: 20px; |
| 14 padding-top: 20px; |
| 15 } |
| 16 |
| 17 html[dir=rtl] h1 { |
| 18 background-position: right; |
| 19 } |
| 20 |
| 21 #magic-summary { |
| 22 background-color: #ebeff9; |
| 23 border-top: 1px solid #9cc2ef; |
| 24 margin-bottom: 6px; |
| 25 margin-top: 12px; |
| 26 padding: 3px; |
| 27 } |
| 28 |
| 29 #magic-summary-text { |
| 30 font-weight: bold; |
| 31 } |
| 32 |
| 33 #sessions-summary { |
| 34 background-color: #ebeff9; |
| 35 border-top: 1px solid #9cc2ef; |
| 36 margin-bottom: 6px; |
| 37 margin-top: 12px; |
| 38 padding: 3px; |
| 39 } |
| 40 |
| 41 #sessions-summary-text { |
| 42 font-weight: bold; |
| 43 } |
| 44 |
| 45 #session-list h3 { |
| 46 font-size: 100%; |
| 47 } |
| 48 |
| 49 #session-list > div > * { |
| 50 margin: 0.75em 0; |
| 51 } |
| 52 |
| 53 #session-list a:visited { |
| 54 color: #666; |
| 55 } |
| 56 |
| 57 #session-list > div:not(:last-child) { |
| 58 border-bottom: 1px solid #bbb; |
| 59 } |
| 60 |
| 61 a.tab-link { |
| 62 background: no-repeat 0% 50%; |
| 63 background-size: 16px 16px; |
| 64 display: block; |
| 65 line-height: 20px; |
| 66 padding-left: 18px; |
| 67 } |
| 68 |
| 69 .indent { |
| 70 margin: 4px; |
| 71 padding-left: 16px; |
| 72 } |
| 73 |
| 74 .expandable { |
| 75 cursor: pointer; |
| 76 font-size: 16px; |
| 77 } |
| 78 |
OLD | NEW |