the interface of the KaosCube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
1.4 KiB

1 year ago
  1. body {
  2. #display: flex;
  3. min-height: 500px;
  4. justify-content: center;
  5. align-items: center;
  6. background: lightblue;
  7. font-weight: 500;
  8. font-size: 30pt;
  9. font-family: Verdana,"Rockwell",Helvetica,Serif;
  10. }
  11. input[type="submit"] {
  12. display: block;
  13. font-family: Verdana,"Rockwell",Helvetica,Serif;
  14. font-size: 50px;
  15. width: 220pt;
  16. height: 220pt;
  17. background: #fff;
  18. padding: 10px;
  19. border: 3px;
  20. outline: 2px;
  21. border-radius: 50%;
  22. color: #171717;
  23. transition: all 200ms;
  24. cursor: pointer;
  25. }
  26. input[type="submit"]:focus {
  27. background: transparent;
  28. color: transparent;
  29. border: none;
  30. border-top: solid 3px #f8a;
  31. border-left: solid 3px #fff;
  32. animation: spin 700ms linear infinite;
  33. }
  34. @keyframes spin {
  35. to {transform: rotate(360deg);}
  36. }
  37. a {
  38. text-decoration: none;
  39. color: black;
  40. }
  41. input[type="text"] {
  42. background: #f8a;
  43. border: 4pt;
  44. border-color: white;
  45. color: black;
  46. border-style: solid;
  47. height: 50pt;
  48. width: 80vw;
  49. font-size: 55pt;
  50. }
  51. input[type="text"]:focus {
  52. background: lightblue;
  53. border: 4pt;
  54. border-color: white;
  55. color: black;
  56. border-style: solid;
  57. height: 50pt;
  58. width: 80vw;
  59. font-size: 45pt;
  60. outline-color: black;
  61. }
  62. #Connect {
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. }
  67. #containerdiv {
  68. display: grid;
  69. grid-template-columns: auto auto auto auto;
  70. grid-column-gap: 4vw;
  71. }
  72. #containerdiv2 {
  73. display: grid;
  74. grid-template-columns: auto auto;
  75. grid-column-gap: 4vw;
  76. }