Warning, /office/klevernotes/src/contents/resources/style/Style7.css is written in an unsupported language. File is not indexed.

0001 :root {
0002     --bodyColor: ;
0003     --font: ;
0004     --fontSize: ;
0005     --textColor: ;
0006     --titleColor: ;
0007     --linkColor: ;
0008     --visitedLinkColor: ;
0009     --codeColor: ;
0010     --highlightColor: ;
0011     --codeFont: ;
0012     --codeFontSize: ;
0013 }
0014 
0015 body {
0016     font-family: var(--font), sans-serif;
0017     font-size: var(--fontSize); /*was 14, all other font-size are based on that*/
0018     line-height: 1.6;
0019     padding-top: 10px;
0020     padding-bottom: 10px;
0021     background-color: var(--bodyColor);
0022     padding: 30px;
0023     color: var(--textColor);
0024 }
0025 
0026 body > *:first-child {
0027     margin-top: 0 !important;
0028 }
0029 body > *:last-child {
0030     margin-bottom: 0 !important;
0031 }
0032 
0033 a {
0034     color: var(--linkColor);
0035 }
0036 
0037 a:visited {
0038     color: var(--visitedLinkColor);
0039 }
0040 
0041 a.absent {
0042     color: #cc0000;
0043 }
0044 
0045 a.anchor {
0046     display: block;
0047     padding-left: 30px;
0048     margin-left: -30px;
0049     cursor: pointer;
0050     position: absolute;
0051     top: 0;
0052     left: 0;
0053     bottom: 0;
0054 }
0055 
0056 h1, h2, h3, h4, h5, h6 {
0057     margin: 20px 0 10px;
0058     padding: 0;
0059     font-weight: bold;
0060     -webkit-font-smoothing: antialiased;
0061     cursor: text;
0062     position: relative;
0063 }
0064 
0065 h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor {
0066     text-decoration: none;
0067 }
0068 
0069 h1 tt, h1 code {
0070     font-size: inherit;
0071 }
0072 
0073 h2 tt, h2 code {
0074     font-size: inherit;
0075 }
0076 
0077 h3 tt, h3 code {
0078     font-size: inherit;
0079 }
0080 
0081 h4 tt, h4 code {
0082     font-size: inherit;
0083 }
0084 
0085 h5 tt, h5 code {
0086     font-size: inherit;
0087 }
0088 
0089 h6 tt, h6 code {
0090     font-size: inherit;
0091 }
0092 
0093 h1 {
0094     font-size: calc(var(--fontSize) * 2);
0095     color: var(--titleColor);
0096 }
0097 
0098 h2 {
0099     font-size: calc(var(--fontSize) + 10px);
0100     border-bottom: 1px solid var(--titleColor);
0101     color: var(--titleColor);
0102 }
0103 
0104 h3 {
0105     font-size: calc(var(--fontSize) + 4px);
0106 }
0107 
0108 h4 {
0109     font-size: calc(var(--fontSize) + 2px);
0110 }
0111 
0112 h5 {
0113     font-size: var(--fontSize);
0114 }
0115 
0116 h6 {
0117     color: var(--titleColor);
0118     font-size: var(--fontSize);
0119     filter: brightness(130%);
0120 }
0121 
0122 p, ul, ol, dl, li, table, pre {
0123     margin: 15px 0;
0124 }
0125 
0126 hr {
0127     height: 4px;
0128     padding: 0;
0129     border: 0;
0130     color: var(--titleColor);
0131     background-color: var(--titleColor);
0132 }
0133 
0134 mark {
0135     background-color: var(--highlightColor);
0136 }
0137 
0138 body > h2:first-child {
0139     margin-top: 0;
0140     padding-top: 0;
0141 }
0142 
0143 body > h1:first-child {
0144     margin-top: 0;
0145     padding-top: 0;
0146 }
0147 
0148 body > h1:first-child + h2 {
0149     margin-top: 0;
0150     padding-top: 0;
0151 }
0152 
0153 body > h3:first-child, body > h4:first-child, body > h5:first-child, body > h6:first-child {
0154     margin-top: 0;
0155     padding-top: 0;
0156 }
0157 
0158 a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
0159     margin-top: 0;
0160     padding-top: 0;
0161 }
0162 
0163 h1 p, h2 p, h3 p, h4 p, h5 p, h6 p {
0164     margin-top: 0;
0165 }
0166 
0167 li p.first {
0168     display: inline-block;
0169 }
0170 
0171 li {
0172     margin: 0;
0173 }
0174 
0175 ul, ol {
0176     padding-left: 30px;
0177 }
0178 
0179 ul :first-child, ol :first-child {
0180     margin-top: 0;
0181 }
0182 
0183 dl {
0184     padding: 0;
0185 }
0186 
0187 dl dt {
0188     font-size: var(--fontSize);
0189     font-weight: bold;
0190     font-style: italic;
0191     padding: 0;
0192     margin: 15px 0 5px;
0193 }
0194 
0195 dl dt:first-child {
0196     padding: 0;
0197 }
0198 
0199 dl dt > :first-child {
0200     margin-top: 0;
0201 }
0202 
0203 dl dt > :last-child {
0204     margin-bottom: 0;
0205 }
0206 
0207 dl dd {
0208     margin: 0 0 15px;
0209     padding: 0 15px;
0210 }
0211 
0212 dl dd > :first-child {
0213     margin-top: 0;
0214 }
0215 
0216 dl dd > :last-child {
0217     margin-bottom: 0;
0218 }
0219 
0220 blockquote {
0221     border-left: 4px solid;
0222     padding: 0 15px;
0223     color: var(--titleColor);
0224 }
0225 
0226 blockquote > :first-child {
0227     margin-top: 0;
0228 }
0229 
0230 blockquote > :last-child {
0231     margin-bottom: 0;
0232 }
0233 
0234 table {
0235     padding: 0;border-collapse: collapse;
0236 }
0237 
0238 table tr {
0239     border-top: 1px solid;
0240     margin: 0;
0241     padding: 0;
0242     color: var(--textColor)
0243     filter: brightness(70%);
0244     background-color: var(--codeColor);
0245 }
0246 
0247 table tr:nth-child(2n) {
0248     background-color: var(--codeColor);
0249     filter: brightness(90%);
0250 }
0251 
0252 table tr th {
0253     font-weight: bold;
0254     border: 1px solid;
0255     margin: 0;
0256     padding: 6px 13px;
0257     filter: brightness(70%);
0258 }
0259 
0260 table tr td {
0261     border: 1px solid;
0262     margin: 0;
0263     padding: 6px 13px;
0264     filter: brightness(70%);
0265 }
0266 
0267 table tr th :first-child, table tr td :first-child {
0268     margin-top: 0;
0269 }
0270 
0271 table tr th :last-child, table tr td :last-child {
0272     margin-bottom: 0;
0273 }
0274 
0275 img {
0276     max-width: 100%;
0277 }
0278 
0279 span.frame {
0280     display: block;
0281     overflow: hidden;
0282 }
0283 
0284 span.frame > span {
0285     border: 1px solid var(--codeColor);
0286     display: block;
0287     float: left;
0288     overflow: hidden;
0289     margin: 13px 0 0;
0290     padding: 7px;
0291     width: auto;
0292 }
0293 
0294 span.frame span img {
0295     display: block;
0296     float: left;
0297 }
0298 
0299 span.frame span span {
0300     clear: both;
0301     color: var(--codeColor);
0302     display: block;
0303     padding: 5px 0 0;
0304     filter: brightness(70%);
0305 }
0306 
0307 span.align-center {
0308     display: block;
0309     overflow: hidden;
0310     clear: both;
0311 }
0312 
0313 span.align-center > span {
0314     display: block;
0315     overflow: hidden;
0316     margin: 13px auto 0;
0317     text-align: center;
0318 }
0319 
0320 span.align-center span img {
0321     margin: 0 auto;
0322     text-align: center;
0323 }
0324 
0325 span.align-right {
0326     display: block;
0327     overflow: hidden;
0328     clear: both;
0329 }
0330 
0331 span.align-right > span {
0332     display: block;
0333     overflow: hidden;
0334     margin: 13px 0 0;
0335     text-align: right;
0336 }
0337 
0338 span.align-right span img {
0339     margin: 0;
0340     text-align: right;
0341 }
0342 
0343 span.float-left {
0344     display: block;
0345     margin-right: 13px;
0346     overflow: hidden;
0347     float: left;
0348 }
0349 
0350 span.float-left span {
0351     margin: 13px 0 0;
0352 }
0353 
0354 span.float-right {
0355     display: block;
0356     margin-left: 13px;
0357     overflow: hidden;
0358     float: right;
0359 }
0360 
0361 span.float-right > span {
0362     display: block;
0363     overflow: hidden;
0364     margin: 13px auto 0;
0365     text-align: right;
0366 }
0367 
0368 code, tt {
0369     margin: 0 2px;
0370     padding: 0 5px;
0371     white-space: nowrap;
0372     border: 1px solid var(--titleColor);
0373     background-color: var(--codeColor);
0374     border-radius: 3px;
0375     filter: brightness(80%);
0376 }
0377 
0378 pre code {
0379     margin: 0;
0380     padding: 0;
0381     white-space: pre-wrap;
0382     border: none;
0383     background: transparent;
0384     font-family: var(--codeFont), monospace; 
0385 }
0386 
0387 pre {
0388     background-color: var(--codeColor);
0389     border: 1px solid var(--linkColor);
0390     font-size: var(--codeFontSize);
0391     line-height: 19px;
0392     overflow: auto;
0393     padding: 6px 10px;
0394     border-radius: 3px;
0395     filter: brightness(80%);
0396 }
0397 
0398 pre code, pre tt {
0399     background-color: transparent;
0400     border: none;
0401 }
0402 
0403 sup {
0404     font-size: 0.83em;
0405     vertical-align: super;
0406     line-height: 0;
0407 }