Advertisement
__Tyler__

main.css

Oct 31st, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.87 KB | None | 0 0
  1. #orb-extension-html{
  2.     z-index: 999999999;
  3. }
  4. #orb-body{
  5.     z-index: 999999999;
  6. }
  7. #main-orb{
  8.     border-radius: 5em;
  9.     /*background-color: #ff7b008c;*/
  10.     background-color: transparent;
  11.     position: fixed;
  12.     width:5vw;
  13.     height:5vw;
  14.     min-width:35px;
  15.     min-height:35px;
  16.     right:-2vw;
  17.     bottom:-2vw;
  18.     z-index: 999999998;
  19. }
  20. #close-orb{
  21.     width: 3.5vw;
  22.     height: 3.5vw;
  23.     min-width:25px;
  24.     min-height:25px;
  25.     right: 1vw;
  26.     bottom: 1vw;
  27.     background-color: #b1030545;
  28.     position: fixed;
  29.     border-radius: 5em;
  30.     visibility: hidden;
  31.     z-index: 999999999;
  32. }
  33. #close-orb:hover{
  34.     cursor: pointer;
  35.     border-style:solid;
  36.     border-width: 2px;
  37.     border-color: wheat;
  38.     z-index: 999999999;
  39. }
  40. #close-x{
  41.     color:blue;
  42.     position: absolute;
  43.     right: 1.12vw;
  44.     bottom: 0.5vw;
  45.     color:white;
  46.     font-size:2vw;
  47.     visibility: hidden;
  48.     z-index: 999999999;
  49. }
  50. #top-orb-row{
  51.     background-color: transparent;
  52.     width: 3.5vw;
  53.     height: 20vw;
  54.     display:table;
  55.     position: fixed;
  56.     right: 0.2vw;
  57.     bottom: 5.5vw;
  58.     visibility: hidden;
  59.     z-index: 999999999;
  60. }
  61. .top-orb{
  62.     background-color: rgba(255, 123, 0, 0.55);
  63.     width:3vw;
  64.     height:3vw;
  65.     border-radius: 5em;
  66.     margin-top:1vw;
  67.     z-index: 999999999;
  68. }
  69. .top-orb:hover{
  70.     cursor: pointer;
  71.     border-style:solid;
  72.     border-width: 2px;
  73.     border-color: wheat;
  74. }
  75. #bottom-orb-row{
  76.     background-color: transparent;
  77.     width: 20vw;
  78.     height: 3vw;
  79.     right:5.7vw;
  80.     bottom :.2vw;
  81.     position: fixed;
  82.     margin-left:3em;
  83.     display:flex;
  84.     visibility: hidden;
  85.     z-index: 999999999;
  86. }
  87. .bottom-orb{
  88.     width: 3vw;
  89.     height: 3vw;
  90.     background-color: rgba(255, 123, 0, 0.55);
  91.     margin-left: 1vw;
  92.     border-radius: 5em;
  93.     z-index: 999999999;
  94. }
  95. .bottom-orb:hover{
  96.     cursor: pointer;
  97.     border-style:solid;
  98.     border-width: 2px;
  99.     border-color: wheat;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement