branding.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. /* General styles */
  2. body {
  3. font-family: 'Segoe UI' , 'Lucida Grande' , Verdana, Arial, Helvetica, sans-serif;
  4. font-size: 15px;
  5. padding: 0;
  6. margin: 0;
  7. margin-left: auto;
  8. margin-right: auto;
  9. color: #000;
  10. }
  11. h1 {
  12. font-family: 'Segoe UI' , 'Lucida Grande' , Verdana, Arial, Helvetica, sans-serif;
  13. font-size: 2.5em;
  14. font-weight: normal;
  15. margin-top: 0;
  16. color: #000;
  17. }
  18. h2, h3 {
  19. font-family: 'Segoe UI Semibold' , 'Segoe UI' , 'Lucida Grande' , Verdana, Arial, Helvetica, sans-serif;
  20. font-weight: normal;
  21. margin: 0;
  22. padding-bottom: 5px;
  23. padding-top: 5px;
  24. color: #000;
  25. }
  26. h2 {
  27. font-size: 1.769em;
  28. }
  29. h3 {
  30. font-size: 1.231em;
  31. }
  32. h4, .subHeading {
  33. font-family: 'Segoe UI Semibold' , 'Segoe UI' , 'Lucida Grande' , Verdana, Arial, Helvetica, sans-serif;
  34. font-size: 1.077em;
  35. font-weight: normal;
  36. margin: 0;
  37. color: #000;
  38. }
  39. .subHeading {
  40. margin-top: 5px;
  41. }
  42. h5, h6 {
  43. font-family: 'Segoe UI Semibold' , 'Segoe UI' , 'Lucida Grande' , Verdana, Arial, Helvetica, sans-serif;
  44. font-size: 1em;
  45. font-weight: normal;
  46. line-height: 130%;
  47. margin: 0;
  48. color: #000;
  49. }
  50. a, a:link {
  51. text-decoration: none;
  52. color: #1364c4;
  53. }
  54. a:visited, a:active {
  55. text-decoration: none;
  56. color: #03697a;
  57. }
  58. a:hover {
  59. text-decoration: none;
  60. color: #3390b1;
  61. }
  62. a.button, a.button:active, a.button:hover {
  63. float: right;
  64. background-color: #0080c0;
  65. color: white;
  66. padding: 6px 12px;
  67. font-size: 14px;
  68. border: 1px solid transparent;
  69. border-radius: 4px;
  70. margin-left: 6px;
  71. }
  72. a.button:link, a.button:visited {
  73. color: white;
  74. }
  75. img {
  76. border: 0;
  77. }
  78. p {
  79. margin-top: 0;
  80. margin-bottom: 0;
  81. padding-bottom: 15px;
  82. line-height: 18px;
  83. }
  84. q {
  85. font-style: italic;
  86. }
  87. blockquote {
  88. margin-top: 0px;
  89. }
  90. table {
  91. border-collapse: collapse;
  92. padding: 0;
  93. margin-bottom: 15px;
  94. font-size: 15px;
  95. width: 100%;
  96. }
  97. td, th {
  98. border-bottom: 1px solid #dbdbdb;
  99. margin: 10px;
  100. padding-top: 10px;
  101. padding-bottom: 10px;
  102. padding-right: 8px;
  103. padding-left: 8px;
  104. }
  105. th {
  106. background-color: #ededed;
  107. color: #636363;
  108. text-align: left;
  109. padding-top: 5px;
  110. padding-bottom: 5px;
  111. }
  112. td {
  113. color: #2a2a2a;
  114. vertical-align: top;
  115. }
  116. table p:last-child {
  117. padding-bottom: 0;
  118. }
  119. table.members {
  120. width: 100%;
  121. }
  122. table.members td {
  123. min-width: 72px;
  124. }
  125. table.members img {
  126. padding-right: 5px;
  127. }
  128. div.alert img {
  129. padding-right: 5px;
  130. }
  131. ol {
  132. margin-top: 0px;
  133. margin-bottom: 10px;
  134. }
  135. ol ol {
  136. list-style-type: lower-alpha;
  137. }
  138. ol ol ol {
  139. list-style-type: lower-roman;
  140. }
  141. ul {
  142. margin-top: 0px;
  143. margin-bottom: 10px;
  144. }
  145. .noBullet {
  146. list-style-type: none;
  147. padding-left: 20px;
  148. }
  149. ul ul {
  150. list-style-type: circle;
  151. }
  152. ul ul ul {
  153. list-style-type: square;
  154. }
  155. dt {
  156. font-weight: 600;
  157. }
  158. pre {
  159. font-family: Consolas, Courier, monospace;
  160. overflow: hidden;
  161. }
  162. .pageHeader {
  163. font-family: 'Segoe UI' , Tahoma, Helvetica, Sans-Serif;
  164. background-color: #333333;
  165. color: #d0d0d0;
  166. padding: 5px 10px;
  167. vertical-align: middle;
  168. height: 25px;
  169. }
  170. .pageBody {
  171. padding: 0px;
  172. }
  173. .topicContent {
  174. padding: 10px 10px 15px 10px;
  175. overflow: visible;
  176. border-left: 1px solid #bbb;
  177. }
  178. .pageFooter {
  179. clear: both;
  180. border-top: solid 1px #bbb;
  181. padding: 10px;
  182. }
  183. .feedbackLink {
  184. }
  185. .iconColumn {
  186. width: 100px;
  187. }
  188. .seeAlsoStyle {
  189. }
  190. table.titleTable td {
  191. padding-top: 0px;
  192. border-width: 0px;
  193. }
  194. td.titleColumn {
  195. margin-top: 0px;
  196. padding-left: 0px;
  197. vertical-align: middle;
  198. }
  199. td.logoColumn {
  200. padding-left: 0px;
  201. padding-right: 10px;
  202. vertical-align: middle;
  203. width: 1px;
  204. }
  205. td.logoColumnAbove {
  206. padding: 0px 10px 0px 0px;
  207. vertical-align: middle;
  208. }
  209. span.selflink {
  210. color: #000066;
  211. }
  212. div.preliminary {
  213. margin-top: 1em;
  214. margin-bottom: 1em;
  215. font-weight: bold;
  216. color: #333333;
  217. }
  218. div.caption {
  219. font-weight: bold;
  220. font-size: 1em; /*12pt*/
  221. color: #003399;
  222. padding-top: 5px;
  223. padding-bottom: 5px;
  224. }
  225. .procedureSubHeading {
  226. font-size: 1.1em; /*13.5pt*/
  227. font-weight: bold;
  228. }
  229. .summary {
  230. }
  231. /* Collapsible region styles */
  232. .collapsibleAreaRegion {
  233. margin-top: 15px;
  234. margin-bottom: 15px;
  235. }
  236. .collapseToggle {
  237. padding-right: 5px;
  238. }
  239. .collapsibleRegionTitle {
  240. font-family: 'Segoe UI Semibold' , 'Segoe UI' , 'Lucida Grande' , Verdana, Arial, Helvetica, sans-serif !important;
  241. font-style: normal !important;
  242. font-size: 1.769em;
  243. margin-top: 9px;
  244. margin-bottom: 19px;
  245. padding-top: 20px;
  246. padding-bottom: 5px;
  247. cursor: pointer;
  248. }
  249. .collapsibleSection {
  250. padding: 0 0 0 20px;
  251. }
  252. /* Syntax and code snippet styles */
  253. .codeSnippetContainer {
  254. min-width: 260px;
  255. margin-top: 10px;
  256. }
  257. .codeSnippetContainerTabs {
  258. height: 23px;
  259. vertical-align: middle;
  260. position: relative;
  261. z-index: 1;
  262. }
  263. .codeSnippetContainerTab {
  264. padding: 0px 15px;
  265. width: auto;
  266. height: 22px;
  267. color: #2a2a2a;
  268. font-family: "Segoe UI" , "Lucida Grande" , Verdana, Arial, Helvetica, sans-serif !important;
  269. font-size: 12px;
  270. font-style: normal !important;
  271. vertical-align: baseline;
  272. float: left;
  273. }
  274. .codeSnippetContainerTabActive {
  275. background: #f8f8f8;
  276. padding: 0px 15px;
  277. width: auto;
  278. height: 22px;
  279. color: #000000;
  280. font-family: "Segoe UI" , "Lucida Grande" , Verdana, Arial, Helvetica, sans-serif !important;
  281. font-size: 12px;
  282. font-style: normal !important;
  283. vertical-align: baseline;
  284. border-top-color: #939393;
  285. border-right-color: #939393;
  286. border-left-color: #939393;
  287. border-top-width: 1px;
  288. border-right-width: 1px;
  289. border-left-width: 1px;
  290. border-top-style: solid;
  291. border-right-style: solid;
  292. border-left-style: solid;
  293. float: left;
  294. }
  295. .codeSnippetContainerTabPhantom {
  296. background: #f8f8f8;
  297. padding: 0px 15px;
  298. width: auto;
  299. height: 22px;
  300. color: #000000;
  301. font-family: "Segoe UI" , "Lucida Grande" , Verdana, Arial, Helvetica, sans-serif !important;
  302. font-size: 12px;
  303. font-style: normal !important;
  304. vertical-align: baseline;
  305. border-top-color: #939393;
  306. border-right-color: #939393;
  307. border-left-color: #939393;
  308. border-top-width: 1px;
  309. border-right-width: 1px;
  310. border-left-width: 1px;
  311. border-top-style: solid;
  312. border-right-style: solid;
  313. border-left-style: solid;
  314. float: left;
  315. display: none;
  316. }
  317. .codeSnippetContainerTabSingle {
  318. background: #f8f8f8;
  319. padding: 2px 15px 0px 15px;
  320. width: auto;
  321. height: 20px;
  322. color: #000000;
  323. font-family: "Segoe UI" , "Lucida Grande" , Verdana, Arial, Helvetica, sans-serif !important;
  324. font-size: 12px;
  325. font-weight: bold;
  326. font-style: normal !important;
  327. vertical-align: baseline;
  328. border-top-color: #939393;
  329. border-right-color: #939393;
  330. border-left-color: #939393;
  331. border-top-width: 1px;
  332. border-right-width: 1px;
  333. border-left-width: 1px;
  334. border-top-style: solid;
  335. border-right-style: solid;
  336. border-left-style: solid;
  337. float: left;
  338. }
  339. .codeSnippetContainerTab a {
  340. top: 2px;
  341. color: #000000;
  342. font-weight: bold;
  343. text-decoration: none;
  344. position: relative;
  345. }
  346. .codeSnippetContainerTab a:link {
  347. color: #000000;
  348. }
  349. .codeSnippetContainerTab a:hover {
  350. color: #136460;
  351. }
  352. .codeSnippetContainerTabActive a {
  353. top: 2px;
  354. color: #000000;
  355. font-weight: bold;
  356. text-decoration: none;
  357. position: relative;
  358. cursor: default;
  359. }
  360. .codeSnippetContainerTabActive a:link {
  361. color: #000000;
  362. }
  363. .codeSnippetContainerTabActive a:hover {
  364. color: #000000;
  365. }
  366. .codeSnippetContainerTabPhantom a {
  367. top: 2px;
  368. color: #000000;
  369. font-weight: bold;
  370. text-decoration: none;
  371. position: relative;
  372. cursor: default;
  373. }
  374. .codeSnippetContainerTabPhantom a:link {
  375. color: #000000;
  376. }
  377. .codeSnippetContainerCodeContainer {
  378. border: 1px solid #939393;
  379. top: -1px;
  380. margin-bottom: 12px;
  381. position: relative;
  382. }
  383. .codeSnippetToolBar {
  384. width: auto;
  385. height: auto;
  386. }
  387. .codeSnippetToolBarText {
  388. top: -8px;
  389. width: auto;
  390. height: 0px;
  391. padding-right: 0px;
  392. padding-left: 0px;
  393. vertical-align: top;
  394. float: right;
  395. position: relative;
  396. }
  397. .codeSnippetToolBarText a {
  398. color: #1364c4;
  399. text-decoration: none;
  400. padding-left: 8px;
  401. padding-right: 8px;
  402. font-family: "Segoe UI" , "Lucida Grande" , Verdana, Arial, Helvetica, sans-serif !important;
  403. font-size: 10px;
  404. font-style: normal !important;
  405. text-decoration: none;
  406. margin-right: 10px;
  407. margin-left: 0px;
  408. background-color: #ffffff;
  409. }
  410. .codeSnippetToolBarText a:link {
  411. color: #1364c4;
  412. }
  413. .codeSnippetContainerCode {
  414. margin: 0px;
  415. padding: 10px;
  416. width: auto;
  417. }
  418. .codeSnippetContainerCode div {
  419. margin: 0px;
  420. padding: 0px;
  421. }
  422. .codeSnippetContainerCode pre {
  423. margin: 0px;
  424. padding: 5px;
  425. overflow: auto;
  426. font-family: Consolas, Courier, monospace !important;
  427. font-style: normal;
  428. font-weight: normal;
  429. -ms-word-wrap: normal;
  430. }
  431. .codeSnippetContainerCode .keyword {
  432. color: #0000ff;
  433. font-weight: normal;
  434. }
  435. .copyCodeSnippet {
  436. }
  437. /* Keyword and phrase styles */
  438. span.code, span.command {
  439. font-family: Consolas, Courier, monospace;
  440. color: #000066;
  441. }
  442. span.ui {
  443. font-weight: bold;
  444. }
  445. span.math {
  446. font-style: italic;
  447. }
  448. span.input {
  449. font-weight: bold;
  450. }
  451. span.term {
  452. font-style: italic;
  453. }
  454. span.label {
  455. font-weight: bold;
  456. }
  457. span.foreignPhrase, span.phrase {
  458. font-style: italic;
  459. }
  460. span.placeholder {
  461. font-style: italic;
  462. }
  463. span.typeparameter {
  464. font-style: italic;
  465. }
  466. span.identifier {
  467. }
  468. span.keyword {
  469. font-weight: bold;
  470. }
  471. span.parameter {
  472. font-style: italic;
  473. }
  474. dt span.parameter {
  475. font-weight: normal;
  476. }
  477. span.literal, span.literalValue {
  478. color: #cc0000;
  479. }
  480. span.comment {
  481. color: #006633;
  482. }
  483. span.introStyle {
  484. color: #a9a9a9;
  485. }
  486. span.nolink {
  487. font-weight: bold;
  488. }
  489. /* Auto-outline styles */
  490. ul.autoOutline {
  491. }
  492. li.outlineSectionEntry {
  493. }
  494. div.outlineSectionEntrySummary {
  495. }
  496. /* Media styles */
  497. div.mediaNear {
  498. text-align: left;
  499. margin-top: 1em;
  500. margin-bottom: 1em;
  501. }
  502. div.mediaFar {
  503. text-align: right;
  504. margin-top: 1em;
  505. margin-bottom: 1em;
  506. }
  507. div.mediaCenter {
  508. text-align: center;
  509. margin-top: 1em;
  510. margin-bottom: 1em;
  511. }
  512. span.captionLead {
  513. font-weight: bold;
  514. margin-right: .5em;
  515. }
  516. span.media img {
  517. vertical-align: top;
  518. }
  519. /* Glossary styles */
  520. div.glossaryDiv {
  521. }
  522. div.glossaryLetterBar {
  523. }
  524. hr.glossaryRule {
  525. }
  526. h3.glossaryGroupHeading {
  527. color: #808080;
  528. }
  529. div.glossaryGroup {
  530. }
  531. dl.glossaryGroupList {
  532. margin: 0;
  533. color: Black;
  534. }
  535. dt.glossaryEntry {
  536. margin-left: 2em;
  537. }
  538. dd.glossaryEntry {
  539. margin-left: 2em;
  540. margin-bottom: 2em;
  541. }
  542. div.relatedEntry {
  543. margin-bottom: 4px;
  544. }
  545. /* Bibliography styles */
  546. div.bibliographStyle {
  547. padding-top: 5px;
  548. }
  549. span.bibliographyNumber {
  550. }
  551. span.bibliographyAuthor {
  552. font-weight: bold;
  553. }
  554. span.bibliographyTitle {
  555. font-style: italic;
  556. }
  557. span.bibliographyPublisher {
  558. }
  559. sup.citation a:link a:visited a:active {
  560. text-decoration: none;
  561. }
  562. /* Placeholder for the Help 1 user data style class */
  563. .userDataStyle {
  564. }