main.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. html{
  2. font-family: monospace, sans-serif;
  3. }
  4. body{
  5. background-color: #222;
  6. color: #d3d3d3;
  7. text-align: center;
  8. }
  9. form{
  10. display: flex;
  11. flex-direction: row;
  12. flex-wrap: wrap;
  13. justify-content: center;
  14. }
  15. input{
  16. -webkit-appearance: none;
  17. -moz-appearance: none;
  18. appearance: none;
  19. border-style: none;
  20. border-top-left-radius: 6px;
  21. border-bottom-left-radius: 6px;
  22. border-top-right-radius: 0px;
  23. border-bottom-right-radius: 0px;
  24. }
  25. input:focus{
  26. outline: none;
  27. }
  28. button{
  29. border-style: none;
  30. border-top-right-radius: 6px;
  31. border-bottom-right-radius: 6px;
  32. background-color: #8f6f8f;
  33. }
  34. button:hover{
  35. background-color: #88789a;
  36. }
  37. button:active{
  38. background-color: #8181a6;
  39. }
  40. #time{
  41. font-size: 1.5em;
  42. font-weight: bold;
  43. margin: -60px 0px 50px 0px;
  44. }
  45. ul{
  46. display: flex;
  47. justify-content: center;
  48. list-style-type: none;
  49. padding-left: 0px;
  50. }
  51. img{
  52. display: block;
  53. margin: 0 auto 0 auto;
  54. object-fit: cover;
  55. object-position: center;
  56. min-width: 40vw;
  57. max-width: 90vw;
  58. min-height: 60vh;
  59. max-height: 120vh;
  60. border-radius: 12px;
  61. }
  62. iframe{
  63. position: static;
  64. height: 70vh;
  65. border: none;
  66. border-radius: 6px;
  67. }