DNA transcription and translation in wasm with rust
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.

65 lines
1.2 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. :root {
  2. --primary-bg-color: #568ea3;
  3. --secondary-bg-color: #E96400;
  4. --main-highlight-color: #a40e4c;
  5. }
  6. ::selection {
  7. background: var(--main-highlight-color); /* WebKit/Blink Browsers */
  8. }
  9. ::-moz-selection {
  10. background: var(--main-highlight-color); /* Gecko Browsers */
  11. }
  12. * {
  13. box-sizing: border-box;
  14. }
  15. html {
  16. height: 100%;
  17. }
  18. body {
  19. margin: 0;
  20. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  21. height: 100%;
  22. background-color: var(--primary-bg-color);
  23. color: white;
  24. }
  25. h1, h2 {
  26. all: initial;
  27. }
  28. h1, h2 {
  29. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  30. font-size: 23.5px;
  31. color: white;
  32. }
  33. .input-div-container {
  34. height: 100%;
  35. width: 100%;
  36. margin: 0 auto;
  37. padding: 10px;
  38. position: relative;
  39. text-align: center;
  40. }
  41. .input-div {
  42. height: 50%;
  43. width: 50%;
  44. background-color: var(--secondary-bg-color);
  45. position: absolute;
  46. margin-left: auto;
  47. margin-right: auto;
  48. top: 50%;
  49. left: 50%;
  50. transform: translate(-50%, -50%);
  51. }
  52. #footer {
  53. text-align: center;
  54. }