Advertisement
AZJIO

CSS Black v3.3.9.17 (Beta)

Aug 18th, 2013
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.86 KB | None | 0 0
  1. /* JPM: modified to use inheritage widely
  2.     em sizing to better zooming
  3.     coloring similar to MSDN Web
  4. */
  5. html
  6. {
  7.     font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;
  8.     font-size:0.8125em;  /* 13px; */
  9. }
  10. body
  11. {
  12.     background-color:#303030;
  13.     color:#999;
  14.     font-weight:400;
  15. }
  16.  
  17. table
  18. {
  19.     border-collapse:collapse;
  20.     border-color:#666;
  21.     border-style:solid;
  22.     border-width:1px;
  23.     margin-top:5px;
  24.     width:100%;
  25. }
  26.  
  27. table.noborder
  28. {
  29.     border-width:0px;
  30. }
  31.  
  32. th
  33. {
  34.     /* font-size:0.875em;  /* 14px; DOCTYPE without .dld*/
  35.     background-color:#084458;
  36.     border-color:#666;
  37.     border-style:solid;
  38.     border-width:1px;
  39.     color:#cccccc;
  40.     padding:4px;
  41.     text-align:left;
  42. }
  43.  
  44. th.new
  45. {
  46.     width:224px;
  47. }
  48.  
  49. th.old
  50. {
  51.     width:226px;
  52. }
  53.  
  54. th.width25
  55. {
  56.     width:25%;
  57. }
  58.  
  59. th.width75
  60. {
  61.     width:75%;
  62. }
  63.  
  64. tr
  65. {
  66.     padding:4px;
  67. }
  68.  
  69. tr.yellow,tr.yellowbold
  70. {
  71.     background-color:#454334;
  72. }
  73.  
  74. tr.yellowbold
  75. {
  76.     font-weight:700;
  77. }
  78.  
  79. table td
  80. {
  81.     /* font-size:0.875em;  /* 14px; DOCTYPE without .dld*/
  82.     border-color:#666;
  83.     border-style:solid;
  84.     border-width:1px;
  85.     padding:4px;
  86. }
  87.  
  88. table.noborder td
  89. {
  90.     border-width:0px;
  91. }
  92.  
  93. td.center
  94. {
  95.     text-align:center;
  96. }
  97.  
  98. td.right
  99. {
  100.     text-align:right;
  101. }
  102.  
  103. td.sep
  104. {
  105.     border-color:white silver;
  106. }
  107.  
  108. b
  109. {
  110.     font-weight:700;
  111. }
  112.  
  113. u
  114. {
  115.     text-decoration:underline; /* for html5 compatibility if needed */
  116. }
  117.  
  118. p
  119. {
  120.     margin:0;
  121.     padding-bottom:5px;
  122.     padding-top:5px;
  123. }
  124.  
  125. p.center
  126. {
  127.     text-align:center;
  128. }
  129.  
  130. span.underline
  131. {
  132.     text-decoration:underline;
  133. }
  134.  
  135. .funcdesc
  136. {
  137.     font-size:1.25em; /* 20px; */
  138. }
  139.  
  140. ul.cell
  141. {
  142.     margin:0 0 0 25px;
  143. }
  144.  
  145. div.indent
  146. {
  147.     margin-left:32px;
  148. }
  149.  
  150.  
  151. a,a:link
  152. {
  153.     color:#8888dd;
  154. }
  155.  
  156. a:visited
  157. {
  158.     color:#8888dd;
  159. }
  160.  
  161. a:active
  162. {
  163.     color:#8888dd;
  164. }
  165.  
  166. a:hover
  167. {
  168.     color:#cccc00;
  169. }
  170.  
  171. a,a:link,a:visited,a:active
  172. {
  173.     text-decoration:none;
  174. }
  175.  
  176. a:hover
  177. {
  178.     text-decoration:underline;
  179. }
  180.  
  181. a.ext:link,a.ext:visited,a.ext:active
  182. {
  183.     text-decoration:underline;
  184. }
  185.  
  186. h1
  187. {
  188.     color:#999;
  189.     font-size:2.75em; /* 36-44px; */
  190.     font-weight:400;
  191.     margin:0;
  192.     padding-bottom:15px;
  193.     padding-top:15px;
  194. }
  195.  
  196. .small
  197. {
  198.     font-size:.875em; /* 12-14px; */
  199.     margin:-12px 0 -4px;
  200.     padding-bottom:0;
  201.     padding-top:9px;
  202. }
  203.  
  204.  
  205. h2
  206. {
  207.     color:#B3A078;
  208.     font-size:1.5em; /* 24px; */
  209.     font-weight:400;
  210.     line-height:normal;
  211.     margin:0;
  212.     padding-bottom:5px;
  213.     padding-top:25px;
  214. }
  215.  
  216. h3
  217. {
  218.     color:#B3A078;
  219.     font-size:1.0625em; /* 17px; */
  220.     font-weight:700;
  221.     line-height:normal;
  222.     margin-bottom:0;
  223.     margin-left:5px;
  224. }
  225.  
  226. pre,.code,.codeheader,.codebox
  227. {
  228.     font-family:"Courier New", Courier, monospace;
  229. }
  230.  
  231. .code
  232. {
  233.     white-space:nowrap;
  234. }
  235.  
  236. .codeheader
  237. {
  238.     background-color:#3d3c36;
  239.     color: #aaa;
  240.     border-bottom:1px solid #777;
  241.     border-left:1px solid #777;
  242.     border-right:1px solid #777;
  243.     border-top:1px solid #777;
  244.     padding:16px;
  245.     white-space:normal;
  246. }
  247.  
  248. .codebox
  249. {
  250.     background-color: #3f3f3f;
  251.     color:#72adc0;
  252.     border:1px solid #777;
  253.     overflow-x:auto;
  254.     padding:8px 8px 16px;
  255.     margin-top:5px;
  256.     white-space:nowrap;
  257.     width:99%;
  258. }
  259.  
  260. .S0
  261. {
  262.     color:#72ADC0;
  263. }
  264.  
  265. .S1
  266. {
  267.     color:#71AE71;
  268.     font-style:italic;
  269. }
  270.  
  271. .S2
  272. {
  273.     color:#71AE71;
  274.     font-style:italic;
  275. }
  276.  
  277. .S3
  278. {
  279.     color:#C738B9;
  280. }
  281.  
  282. .S4
  283. {
  284.     color:#AAA6DB;
  285. }
  286.  
  287. .S5
  288. {
  289.     color:#0080FF;
  290. }
  291.  
  292. .S6
  293. {
  294.     color:#FF46FF;
  295. }
  296.  
  297. .S7
  298. {
  299.     color:#999;
  300. }
  301.  
  302. .S8
  303. {
  304.     color:#FF8080;
  305. }
  306.  
  307. .S9
  308. {
  309.     color:#D29A6C;
  310. }
  311.  
  312. .S10
  313. {
  314.     color:#EA9515;
  315. }
  316.  
  317. .S11
  318. {
  319.     color:#F000FF;
  320. }
  321.  
  322. .S12
  323. {
  324.     color:#0080C0;
  325. }
  326.  
  327. .S13
  328. {
  329.     background-color:#DDE8F0;
  330.     color:red;
  331. }
  332.  
  333. .S14
  334. {
  335.     color:#0080FF;
  336. }
  337.  
  338. .S15
  339. {
  340.     color:#7D8AE6;
  341. }
  342.  
  343. .bottom
  344. {
  345.     padding-bottom:0;
  346.     margin-bottom:0;
  347. }
  348.  
  349. .experimental
  350. {
  351.     background-color:#lightyellow;
  352.     border:solid;
  353.     border-color:red;
  354.     font-size:1.5em; /* 24px; */
  355.     font-weight:700;
  356.     margin:12px;
  357.     padding:4px;
  358. }
  359.  
  360. .specialnote
  361. {
  362.     background-color:#fffffa;
  363.     border:solid;
  364.     border-color:blue;
  365.     font-size:1.5em; /* 24px; */
  366.     font-weight:500;
  367.     padding:4px;
  368. }
  369.  
  370. img.logo_v3
  371. {
  372.     box-shadow: 5px 5px 20px #aaa;
  373. }
  374.  
  375. /* adapted from MSDN Web for example code open/copy actions */
  376. .codeSnippetContainer
  377. {
  378.     min-width:260px;
  379.     margin:0;
  380.     padding:0;
  381. }
  382.  
  383. .codeSnippetContainerTabs
  384. {
  385.     font-size:.8333em; /* 13.33px 10pt!important; */
  386.     height:20px; /* 22px; */
  387.     position:relative;
  388.     vertical-align:middle;
  389.     z-index:1;
  390. }
  391.  
  392. .codeSnippetContainerTab
  393. {
  394.     /*background:none repeat scroll 0 0 #eff5ff; /* */
  395.     border-bottom:2px solid #d0d2d2;
  396.     border-top:1px solid #bbb;
  397.     border-left:1px solid #929292;
  398.     float:left;
  399.     height:20px; /* 19px; */
  400.     padding:0px 4px; /* 0px 8px; */
  401.     width:auto;
  402.     overflow:hidden;
  403.     position:relative;
  404.     font-weight:normal;
  405. }
  406.  
  407. /* MSDN not used
  408. .codeSnippetContainerTabActive
  409. {
  410.     height:21px;
  411.     background:none repeat scroll 0 0 #303030;
  412.     border-left:1px solid #bbb;
  413.     border-bottom:none;
  414. }
  415.  
  416. .codeSnippetContainerTabFirst
  417. {
  418.     border-radius:4px 0 0 0;
  419.     padding:0 8px 0 6px;
  420. }
  421.  
  422. .codeSnippetContainerTabLast
  423. {
  424.     border-right:1px solid #bbb;
  425.     border-radius:0 4px 0 0;
  426.     padding:0 6px 0 8px;
  427. }
  428. */
  429.  
  430. .codeSnippetContainerTabSingle
  431. {
  432.     border:none;
  433.     color:#00709f; /* #e66a38; */
  434.     vertical-align:baseline;
  435.     top:10px; /* 8px; */
  436.     left:12px; /* 7px; */
  437.     position:relative;
  438.     background-color:#303030;
  439. }
  440.  
  441. .codeSnippetContainerTabSingle a
  442. {
  443.     color:#e66a38; /* !important; */
  444. }
  445.  
  446. .codeSnippetContainerTab a,.codeSnippetContainerTab a:link,.codeSnippetContainerTab a:visited,.codeSnippetContainerTab a:active
  447. {
  448.     color:#1364c4;
  449.     text-decoration:none;
  450. }
  451.  
  452. /* MSDN not used
  453. .codeSnippetContainerTabActive a,.codeSnippetContainerTabActive a:link,.codeSnippetContainerTabActive a:visited,.codeSnippetContainerTabActive a:active
  454. {
  455.     color:#e66a38;
  456.     text-decoration:none;
  457.     position:relative;
  458. }
  459.  
  460. .codeSnippetContainerTabPhantom a,.codeSnippetContainerTabPhantom a:link,.codeSnippetContainerTabPhantom a:visited,.codeSnippetContainerTabPhantom a:active
  461. {
  462.     color:#c2c2c2;
  463.     text-decoration:none;
  464.     position:relative;
  465. }
  466.  
  467. .codeSnippetContainerTabPhantom a:link,.codeSnippetContainerTabPhantom a:visited,.codeSnippetContainerTabPhantom a:active
  468. {
  469.     color:#707070;
  470.     text-decoration:none;
  471.     position:relative;
  472. }
  473. */
  474.  
  475. .codeSnippetContainerTab a:hover
  476. {
  477.     color:#e66a38;
  478.     position:relative;
  479. }
  480.  
  481. /* MSDN not used
  482. .codeSnippetContainerTabPhantom a:hover
  483. {
  484.     color:#c2c2c2;
  485.     position:relative;
  486. }
  487. */
  488.  
  489. .codeSnippetContainerCodeContainer
  490. {
  491.     background-color: #3f3f3f;
  492.     border-bottom:1px solid #666;
  493.     border-left:1px solid #666; /* 1px */
  494.     border-right:1px solid #666; /* 1px */
  495.     clear:both;
  496.     margin-bottom:0; /* 12px; */
  497.     position:relative;
  498.     top:-3px;
  499. }
  500.  
  501. .codeSnippetToolBar
  502. {
  503.     border-left:0px solid #666; /* 1px */
  504.     border-right:0px solid #666; /* 3px */
  505.     border-top:1px solid #666;
  506.     height:auto;
  507.     width:auto;
  508. }
  509.  
  510. div.codeSnippetToolBarText
  511. {
  512.     float:right;
  513.     top:-12px; /* -8px; */
  514.     position:relative;
  515.     background-color:#303030;
  516.     width:auto;
  517.     padding-left:4px;
  518.     padding-right:4px;
  519.     height:0;
  520.     vertical-align:top;
  521. }
  522.  
  523. div.codeSnippetToolBarText>a:link,div.codeSnippetToolBarText>a:visited,div.codeSnippetToolBarText>a:active
  524. {
  525.     /* display:none; */
  526.     margin-left:5px;
  527.     margin-right:5px;
  528.     /* font-size:100%; /* 83.33%; /* 10pt */
  529.     /* font-style:normal!important; */
  530.     /*color:#1364c4;*/
  531.     text-decoration:none;
  532.     background-color:#303030;
  533.     padding-left:4px;
  534.     padding-right:4px;
  535. }
  536.  
  537. div.codeSnippetToolBarText>a:hover
  538. {
  539.     text-decoration:underline;
  540. }
  541.  
  542. .codeSnippetContainerCode
  543. {
  544.     margin-top:14px; /* 0; */
  545.     padding:5px 10px; /* 9px 21px; */
  546.     width:auto;
  547. }
  548.  
  549. .codeSnippetContainerCode div
  550. {
  551.     padding:0;
  552.     margin:0;
  553. }
  554.  
  555. .codeSnippetContainerCode pre
  556. {
  557.     padding-left:5px; /* 5px; */
  558.     margin:0;
  559.     word-break:break-all;
  560.     word-wrap:break-word;
  561.     font-style:normal;
  562.     font-weight:normal;
  563.     overflow:auto;
  564. }
  565.  
  566. #hhctrl
  567. {
  568.     vertical-align:middle;
  569. }
  570.  
  571. #hhctrl-bottom
  572. {
  573.     vertical-align:bottom;
  574. }
  575.  
  576. .codeSnippetContainerTab object
  577. {
  578.     cursor:pointer;
  579.     text-decoration:underline;
  580. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement