logo

ibnjs

Unnamed repository; edit this file 'description' to name the repository.

ibniz.css (725B)


  1. :root {
  2. color-scheme: black;
  3. }
  4. /* <https://github.com/whatwg/html/issues/5426#issuecomment-607286557> */
  5. @supports (color-scheme: black) {
  6. a { color: violet; }
  7. }
  8. html, body, main {
  9. color: #FFF;
  10. background-color: #000;
  11. margin: 0;
  12. padding: 0;
  13. font-family: monospace;
  14. }
  15. main {
  16. width: 100vw;
  17. height: 100vh;
  18. display: flex;
  19. }
  20. @media (max-aspect-ratio: 1/1) {
  21. main {
  22. flex-direction: column;
  23. }
  24. }
  25. textarea {
  26. border: none;
  27. color: #FFF;
  28. background-color: #111;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. #ibniz {
  33. width: 100%;
  34. height: 100%;
  35. object-fit: contain;
  36. image-rendering: optimizeQuality;
  37. }
  38. #info {
  39. position: fixed;
  40. bottom: 0;
  41. right: 0;
  42. background-color: rgba(0,0,0,0.5);
  43. }
  44. form {
  45. margin: 0 auto;
  46. display: table;
  47. }