How To Migrate a Parse App to Parse Server on Ubuntu 14.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
1.9 KiB

  1. body {
  2. line-height: 1.4;
  3. background: white;
  4. color: #000000;
  5. font-family: sans-serif;
  6. margin-left: auto;
  7. margin-right: auto;
  8. margin-top: 0em;
  9. max-width: 48em;
  10. padding-left: 1em;
  11. padding-right: 1em;
  12. }
  13. .contents ul li {
  14. list-style: none;
  15. }
  16. .contents ul li li {
  17. }
  18. ul li {
  19. list-style: square;
  20. }
  21. .details .clicker-button {
  22. margin-left: 15px;
  23. vertical-align: middle;
  24. }
  25. button.clicker-button {
  26. background-color: white;
  27. border: 1.5px solid #ddc;
  28. border-radius: 3px;
  29. }
  30. button.clicker-button:active {
  31. background-color: #ddc;
  32. border-left: 1px solid black;
  33. border-top: 1px solid black;
  34. }
  35. .details .full {
  36. background-color: white;
  37. border-bottom: 2px solid #ddc;
  38. border-left: 2px solid #ddc;
  39. border-radius: 3px;
  40. border-right: 2px solid #ddc;
  41. border-top: 2px solid #ddc;
  42. padding: 1.5em;
  43. }
  44. hr {
  45. margin-bottom: 2em;
  46. margin-top: 2em;
  47. }
  48. p, ul li, ol li, ul {
  49. }
  50. td {
  51. vertical-align: top;
  52. }
  53. h1, h2, h3, h4, h5, h6 {
  54. font-family: "Georgia", "DejaVu Serif", "Bitstream Vera Serif", "Lucida Bright", serif;
  55. font-weight: normal;
  56. }
  57. h2, h3, h4, h5, h6 {
  58. text-indent: .25em;
  59. }
  60. h1.bigtitle {
  61. font-size: 3em;
  62. margin-left: auto;
  63. margin-right: auto;
  64. }
  65. a {
  66. font-style: none;
  67. text-decoration: none;
  68. }
  69. pre {
  70. background-color: white;
  71. border: 1px solid #ddc;
  72. border-radius: 3px;
  73. color: black;
  74. margin-bottom: 2em;
  75. margin-left: 2em;
  76. margin-top: 2em;
  77. max-width: 56em;
  78. padding: 1em;
  79. white-space: pre-wrap;
  80. }
  81. p code {
  82. border: 1px solid #ddc;
  83. border-radius: 3px;
  84. font-size: normal;
  85. padding: 2px;
  86. }
  87. img {
  88. margin-top: 2em;
  89. margin-bottom: 2em;
  90. }
  91. .sidenote {
  92. font-size: small;
  93. /* margin-right: -170px; */
  94. max-width: 200px;
  95. position: absolute;
  96. right: 20px;
  97. top: auto; /* default */
  98. }
  99. blockquote.callout {
  100. float: right;
  101. font-size: 1.1em;
  102. margin-left: 2em;
  103. margin-right: 0;
  104. margin-top: 0;
  105. width: 30%;
  106. }
  107. blockquote.callout p {
  108. margin-top: 0;
  109. }