paragraph.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .lead {
  2. color: gray;
  3. font-size: 15px;
  4. }
  5. .md-typeset h2 {
  6. border-bottom: solid 1px #d3d3d3;
  7. padding-bottom: 5px;
  8. }
  9. .md-typeset pre, .highlight code {
  10. background-color: #272822 !important;
  11. font-size: 12px;
  12. }
  13. .md-typeset .highlighttable .codehilitetable {
  14. margin-left:-20px;
  15. margin-right: -20px;
  16. border-radius: 0;
  17. }
  18. .md-typeset .highlighttable .codehilitetable .linenodiv {
  19. background-color: #222 !important;
  20. }
  21. .md-typeset .highlighttable .codehilitetable .linenodiv pre {
  22. background-color: #222 !important;
  23. color: #aaa;
  24. margin: 0;
  25. }
  26. .md-typeset .codehilitetable .md-clipboard:before {
  27. color: rgba(240,240,240,.8);
  28. }
  29. .md-typeset .codehilitetable .md-clipboard:hover:before {
  30. color: rgba(102,217,224,1);
  31. }
  32. .apidl {
  33. margin-left: 20px;
  34. }
  35. .apidef {
  36. display: block;
  37. float: left;
  38. width: 100px;
  39. }
  40. .apidesc {
  41. display: inline-block;
  42. width: calc(100% - 100px);
  43. }
  44. .horizontal-list {
  45. list-style-type: none;
  46. overflow: hidden;
  47. }
  48. .horizontal-list > li {
  49. float: left;
  50. display: block;
  51. }
  52. table.achandling {
  53. font-family: arial, sans-serif;
  54. border-collapse: collapse;
  55. width: 60%;
  56. color: black;
  57. }
  58. table.achandling th, table.achandling td {
  59. border: 1px solid #dddddd;
  60. text-align: center;
  61. padding: 8px;
  62. }
  63. table.achandling tr:nth-child(even) {
  64. background-color: #dddddd;
  65. }