base.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .column {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .row {
  6. display: flex;
  7. flex-direction: row;
  8. align-items: center;
  9. padding: 0.25em;
  10. }
  11. .center {
  12. justify-content: center;
  13. }
  14. .bordered {
  15. background-color: white;
  16. border-radius: 0% 0% 0% 0% / 0% 0% 0% 0% ;
  17. box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
  18. padding: 10px;
  19. }
  20. .col1 {
  21. width: 125px;
  22. max-width: 125px;
  23. text-align: right;
  24. }
  25. .color {
  26. margin: 0 20px;
  27. }
  28. p {
  29. margin: 0;
  30. font-family: 'Indie Flower', cursive;
  31. font-family: 'Chau Philomene One', sans-serif;
  32. font-size: 1em;
  33. }
  34. h1 {
  35. margin: 0;
  36. font-family: 'Indie Flower', cursive;
  37. font-family: 'Chau Philomene One', sans-serif;
  38. font-size: 2em;
  39. }
  40. body {
  41. margin: 0;
  42. padding: 0;
  43. width: 100%;
  44. height: 100%;
  45. overflow: hidden;
  46. }
  47. body > div {
  48. margin: 0;
  49. padding: 0;
  50. width: 100%;
  51. height: 100%;
  52. }
  53. .sentence {
  54. position: absolute;
  55. top: 80px;
  56. width: 100%;
  57. height: 100%;
  58. }
  59. #sentenceText {
  60. font-family: 'Indie Flower', cursive;
  61. font-family: 'Chau Philomene One', sans-serif;
  62. font-size: 4em;
  63. text-shadow: 5px 5px rgba(0, 0, 0, 0.1);
  64. line-height: normal;
  65. }