app.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. font: 400 .875em/1 "Open Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  7. }
  8. h1, h2, h3, h4, h5, h6 {
  9. font-weight: 400;
  10. }
  11. .left {
  12. float: left;
  13. }
  14. .right {
  15. float: right;
  16. }
  17. .clr {
  18. clear: both;
  19. }
  20. .container {
  21. width: 800px;
  22. margin: auto;
  23. }
  24. .hero-section {
  25. background: white;
  26. padding: 50px 0;
  27. line-height: 30px;
  28. text-align: center;
  29. }
  30. .hero-section h1 {
  31. font-size: 32px;
  32. margin-bottom: 11px;
  33. }
  34. .hero-foot {
  35. text-align: center;
  36. }
  37. .hero-foot .container h1 {
  38. margin-bottom: 22px;
  39. }
  40. .hero-section i.em {
  41. margin-right: 3px;
  42. }
  43. .section {
  44. margin-bottom: 40px;
  45. }
  46. .hero-foot {
  47. margin-bottom: 70px;
  48. }
  49. .hero-foot ul.emoji-sets {
  50. list-style: none;
  51. }
  52. .hero-foot ul.emoji-sets li {
  53. display: inline-block;
  54. margin-right: 5px;
  55. }
  56. .hero-foot ul.emoji-sets li button {
  57. outline: none !important;
  58. display: inline-block;
  59. padding: 6px 12px;
  60. margin-bottom: 0;
  61. font-size: 14px;
  62. font-weight: 400;
  63. line-height: 1.42857143;
  64. text-align: center;
  65. white-space: nowrap;
  66. vertical-align: middle;
  67. -ms-touch-action: manipulation;
  68. touch-action: manipulation;
  69. cursor: pointer;
  70. -webkit-user-select: none;
  71. -moz-user-select: none;
  72. -ms-user-select: none;
  73. user-select: none;
  74. background-image: none;
  75. border: 1px solid transparent;
  76. border-radius: 4px;
  77. color: #333;
  78. background-color: #fff;
  79. border-color: #ccc;
  80. }
  81. .hero-foot ul.emoji-sets li button:hover {
  82. color: #333;
  83. background-color: #e6e6e6;
  84. border-color: #adadad;
  85. }
  86. .section h2 {
  87. margin-bottom: 15px;
  88. }
  89. .section p {
  90. margin-bottom: 10px;
  91. line-height: 20px;
  92. }
  93. .section code {
  94. display: inline-block;
  95. margin-bottom: 9px;
  96. background: whitesmoke;
  97. padding: 5px 15px;
  98. width: 242px;
  99. margin-right: 10px;
  100. border-radius: 4px;
  101. font-size: 12px;
  102. }
  103. .alert {
  104. padding: 10px;
  105. background: whitesmoke;
  106. border-radius: 3px;
  107. }
  108. ul.emoji-list {
  109. font-family: monospace;
  110. margin-bottom: 1.3em;
  111. }
  112. ul.emoji-list li {
  113. width: 225px;
  114. margin-bottom: 1em;
  115. }
  116. .list-inline>li {
  117. display: inline-block;
  118. padding-right: 5px;
  119. padding-left: 5px;
  120. }
  121. input[type="text"] {
  122. padding: 10px;
  123. display: block;
  124. width: 100%;
  125. border-radius: 3px;
  126. border: none;
  127. border: 1px solid #ccc;
  128. }