| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* Images */
- img.standard-image {
- max-width: 61.8%;
- min-width: 38.2%;
- height: auto;
- text-align: center;
- display: block;
- margin-left: auto;
- margin-right: auto;
- box-shadow: 10px 10px 20px #888888;
- -webkit-box-shadow: 10px 10px 20px #888888;
- -moz-box-shadow: 10px 10px 20px #888888;
- border-radius: 4px;
- margin-top: 1.5ex;
- margin-bottom: 2.5ex;
- }
- img.small {
- width:38.2%;
- }
- img.full {
- width:100%;
- max-width:100%;
- }
- img.shadowless {
- box-shadow: none;
- margin-bottom: 0px;
- }
- img.inlinemediaobject {
- line-height: 1;
- vertical-align: middle;
- }
- /* Tables */
- /* The class "scedit" is used in tables describing working with the statechart editor.
- These tables typically consist of two columns with a textual description in the
- left column and a screenshot on the right. */
- table.scedit {
- width: auto;
- border-collapse: collapse;
- }
- tr.scedit {
- vertical-align: top
- }
- table.scedit td {
- border-color: #000;
- border-radius: 0%;
- border-style: solid;
- border-width: 0px;
- padding-bottom: 1ex;
- vertical-align: top;
- }
- table.scedit img {
- max-width: 100%;
- margin-left: 0px;
- margin-right: 0px;
- box-shadow: 4px 4px 2px #bbb;
- }
- /* Counter */
- body {counter-reset: h1}
- h1 {counter-reset: h2}
- h2 {counter-reset: h3}
- h3 {counter-reset: h4}
- h4 {counter-reset: h5}
- h5 {counter-reset: h6}
- .body-container h1:before {counter-increment: h1; content: counter(h1) ". "}
- .body-container h2:before {counter-increment: h2; content: counter(h1) "." counter(h2) ". "}
- .body-container h3:before {counter-increment: h3; content: counter(h1) "." counter(h2) "." counter(h3) ". "}
- .body-container h4:before {counter-increment: h4; content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) ". "}
- .body-container h5:before {counter-increment: h5; content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "}
- .body-container h6:before {counter-increment: h6; content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "}
- h1.nocount:before h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before { content: ""; counter-increment: none }
- @media (max-width: 767px) {
- code {
- word-wrap: break-word;
- }
- }
|