Interface für simulierte Qubits (repräsentiert as 3D-Vektor) https://www.victorgiers.com/qubeenee
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.

qubeenee.css 781B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. body {
  2. margin: 0px;
  3. overflow: hidden;
  4. }
  5. #container {
  6. position: absolute;
  7. top: 0px;
  8. left: 0px;
  9. width: 100%;
  10. height: 100%;
  11. }
  12. #lochkarte {
  13. position: absolute;
  14. top: 0; bottom: 0; right: 0; left: 0;
  15. }
  16. .dot {
  17. height: 35px;
  18. width: 35px;
  19. padding: 7px;
  20. margin: 7px;
  21. background-color: #bbb;
  22. border-radius: 50%;
  23. display: inline-block;
  24. }
  25. div#fullscreen_button {
  26. position: absolute;
  27. top: 10px;
  28. right: 10px;
  29. width: 50px;
  30. height: 50px;
  31. cursor: pointer;
  32. background-size: 100% 100%;
  33. display: none;
  34. }
  35. .fullscreen-open {
  36. background-image: url('media/fullscreen-open.png');
  37. }
  38. .fullscreen-close {
  39. background-image: url('media/fullscreen-close.png');
  40. }
  41. /* removes tap blinking on ios devices */
  42. * { -webkit-tap-highlight-color:rgba(0,0,0,0); }