Advertisement
Guest User

Untitled

a guest
Apr 19th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.42 KB | None | 0 0
  1. .keyword {
  2.   background: #ff000066;
  3.   padding: 0.2em 0.2em 0.2em 0.2em;
  4. }
  5. .literal {
  6.   background: #ffcc0066;
  7.   padding: 0.2em 0.2em 0.2em 0.2em;
  8. }
  9. .identifier {
  10.   background: #ffffff66;
  11.   padding: 0.2em 0.2em 0.2em 0.2em;
  12. }
  13. .operator {
  14.   background: #0000ff66;
  15.   padding: 0.2em 0.2em 0.2em 0.2em;
  16. }
  17. .miscSymbol {
  18.   background: #c0c0c066;
  19.   padding: 0.2em 0.2em 0.2em 0.2em;
  20. }
  21. .flex-container {
  22.   display: flex;
  23.   flex-wrap: nowrap;
  24.   flex: 1 1 0;
  25. }
  26. .normal-code-container {
  27.     padding: 0em 2em 0em 0em;
  28.     word-spacing: 3px;
  29. }
  30. .token-container {
  31.     padding: 0em 2em 0em 0em;
  32.     min-width: 30em;
  33. }
  34. .next-button {
  35.     border: none;
  36.     background-color: #111111;
  37.     color: #AAAAAA;
  38.     padding: 1em 2em;
  39.     text-align: center;
  40.     width:100%;
  41.     font-size: 20px;
  42. }
  43. .tooltip {
  44.   position: relative;
  45.   display: inline-block;
  46.   border-bottom: 1px dotted white;
  47. }
  48.  
  49. .tooltip .tooltiptext {
  50.   visibility: hidden;
  51.   width: 120px;
  52.   background-color: black;
  53.   color: #fff;
  54.   text-align: center;
  55.   border-radius: 6px;
  56.   padding: 5px 0;
  57.  
  58.   /* Position the tooltip */
  59.   position: absolute;
  60.   z-index: 1;
  61.   bottom: 100%;
  62.   left: 50%;
  63.   margin-left: -60px;
  64.   opacity: 0;
  65.   transition: opacity 1s;
  66. }
  67.  
  68. .tooltip:hover .tooltiptext {
  69.   visibility: visible;
  70.   opacity: 1;
  71. }
  72. body {
  73.   background-color: #000000;
  74.   color: #ffffff;
  75.   line-height: 2;
  76.   font-family: monospace;
  77.   font-size: 22px;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement