error.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. html, body {
  2. height: 100%
  3. }
  4. body {
  5. margin:0 3rem;
  6. padding:0;
  7. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  8. font-size: 1.5rem;
  9. line-height: 1.4;
  10. display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  11. display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  12. display: -ms-flexbox; /* TWEENER - IE 10 */
  13. display: -webkit-flex; /* NEW - Chrome */
  14. display: flex;
  15. -webkit-align-items: center;
  16. align-items: center;
  17. -webkit-justify-content: center;
  18. justify-content: center;
  19. }
  20. .container {
  21. margin: 0rem;
  22. max-width: 600px;
  23. padding-bottom:5rem;
  24. }
  25. header {
  26. color: #000;
  27. font-size: 4rem;
  28. letter-spacing: 2px;
  29. line-height: 1.1;
  30. margin-bottom: 2rem;
  31. }
  32. p {
  33. font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
  34. color: #666;
  35. }
  36. h5 {
  37. font-weight: normal;
  38. color: #999;
  39. font-size: 1rem;
  40. }
  41. h6 {
  42. font-weight: normal;
  43. color: #999;
  44. }
  45. code {
  46. font-weight: bold;
  47. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  48. }