content-script.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #fe-helper-box {
  2. position: fixed;
  3. left: 1px;
  4. bottom: 0;
  5. right:8px;
  6. z-index: 2147483646;
  7. font-size:12px;
  8. }
  9. #fe-helper-grid {
  10. position:fixed;
  11. top:0;
  12. left:0;
  13. z-index:2147483647;
  14. opacity:0.03;
  15. overflow:hidden;
  16. -webkit-user-select:none;
  17. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAADCAYAAACTWi8uAAAANElEQVQYGWP8Jij7n4EIwPnuERGqGBiYwKrQjUTnE2UURBHEQEYGBgZkQ0B8EEAWgwoRogAZUQgA7keT1AAAAABJRU5ErkJggg==) repeat;
  18. }
  19. #fe-helper-btn-close-grid {
  20. position:fixed;
  21. bottom:10px;
  22. right:10px;
  23. font-size:12px;
  24. font-weight:bold;
  25. color:#00f;
  26. z-index:2147483647;
  27. cursor:pointer;
  28. }
  29. #fe-helper-btn-close-grid:hover {
  30. color:#f00;
  31. }
  32. #fe-helper-g-pos {
  33. background:none;
  34. position:absolute;
  35. top:0;
  36. left:0;
  37. z-index:2147483646;
  38. border:1px solid #0b0;
  39. border-width:0 1px 1px 0;
  40. }
  41. #fe-helper-gp-info {
  42. position:absolute;
  43. z-index:2147483646;
  44. background:#ffc;
  45. border:1px solid #666;
  46. font-size:12px;
  47. text-align:left;
  48. padding:2px 10px;
  49. display:none;
  50. color:#000;
  51. }
  52. #fe-helper-ruler-top {
  53. position:fixed;
  54. top:0;
  55. left:0;
  56. right:0;
  57. height:30px;
  58. background:#fc0;
  59. border-bottom:1px solid #000;
  60. z-index:2147483647;
  61. overflow:hidden;
  62. }
  63. #fe-helper-ruler-left {
  64. position:fixed;
  65. top:0;
  66. left:0;
  67. bottom:0;
  68. width:30px;
  69. background:#fc0;
  70. border-right:1px solid #000;
  71. z-index:2147483647;
  72. overflow:hidden;
  73. }
  74. #fe-helper-ruler-top .h-line{
  75. position:absolute;
  76. width:1px;
  77. background:#000;
  78. }
  79. #fe-helper-ruler-top .h-text{
  80. position:absolute;
  81. top:0;
  82. font-size:8px;
  83. color:#000;
  84. }
  85. #fe-helper-ruler-left .v-line{
  86. position:absolute;
  87. height:1px;
  88. background:#000;
  89. }
  90. #fe-helper-ruler-left .v-text{
  91. position:absolute;
  92. left:0;
  93. font-size:8px;
  94. color:#000;
  95. -webkit-transform:rotate(90deg);
  96. margin-top:4px;
  97. }