You are here

live_css.css in Live CSS 7.2

#csstab {
  font-size: 14px;
  position: fixed;
  top: 30%;
  right: 0;
  height: 80px;
  width: 36px;
  overflow: hidden;
}
#csstab > div {
  font: 14px/14px monospace!important;
  position: relative;
  left: -17px;
  top: 25px;
  height: 28px;
  width: 78px;
  text-align: center;
  background-color: #333333;
  border: 1px solid #AA8866;
  color: #885511;
  padding: 4px;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
#csstab > div:hover {
  color: #AA8866;
}
#csidebar {
  position: absolute;
  background-color: #4C4A41;
  z-index: 1000;
  overflow: hidden;
  line-height: 1!important;
  font-family: Helvetica, Arial, sans-serif;
}
#css-stylelist {
  max-width: 484px;
  width: 100%;
  margin-left: 10px;
  margin-top: 6px;
  font-size: 16px;
  background-color: rgb(245, 245, 245);
}
#css-save, #css-close, #css-dock {
  float: left;
  margin-top: 5px;
  margin-left: 10px;
  font-size: 14px;
  color: #885511;
  background-color: #333333;
  width: 50px;
  text-align: center;
  border: 1px solid #885511;
  padding: 3px;
  text-decoration: none;
  cursor: pointer;
}
#cedit {
  position: relative;
  overflow: hidden;
  left: 0;
}
#csidebar.right {
  top: 0;
  right: 0;
  height: 100%;
  width: 500px;
}
#csidebar.right #cedit {
  margin-top: 35px;
  height: 100%;
  width: 494px;
}
#csidebar.bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
}
#csidebar.bottom #cedit {
  margin-top: 10px;
  max-height: 235px;
  height: 100%;
  width: 100%;
}
#css-save:hover, #css-close:hover, #css-dock:hover {
  color: #AA8866;
  border-color: #AA8866;
}
#css-switch {
  padding: 0 10px;
  max-width: 494px;
  margin: 10px auto 0;
  float: left;
  font-size: 14px;
  font-family:'Cantarell', 'Ubuntu', 'Trebuchet MS', monospace;
  z-index: 1000;
}
#css-switch label {
  display: inline-block;
  position: relative;
  font-size: 14px;
  padding: 0 0 0 24px;
  vertical-align: baseline;
  color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#css-switch input[type="checkbox"], #css-switch label::before {
  width: 16px;
  height: 16px;
  left: 0;
  position: absolute;
  cursor: pointer;
}
#css-switch input[type="checkbox"] {
  opacity: 0;
  -webkit-appearance: none;
  top: 50%;
  z-index: 100;
}
#css-switch input[type="checkbox"] + label::before {
  opacity: .2;
  content:'';
  border: 2px solid rgb(0, 0, 0);
  -webkit-transition: opacity 0.3s, background 0.3s;
  transition: opacity 0.3s, background 0.3s;
}
#css-switch input[type="checkbox"]:checked + label {
  -webkit-transition: opacity 0.3s, background 0.3s;
  transition: opacity 0.3s, background 0.3s;
  opacity: .8;
  color: rgb(255, 255, 255);
}
#css-switch input[type="checkbox"]:checked + label::before {
  -webkit-transition: opacity 0.3s, background 0.3s;
  -moz-transition: opacity 0.3s, background 0.3s;
  transition: opacity 0.3s, background 0.3s;
  opacity: .8;
  border: 2px solid rgb(255, 255, 255);
  background-color: rgb(245, 245, 245);
  content:'\2717';
  color: rgb(0, 0, 0);
}

File

css/live_css.css
View source
  1. #csstab {
  2. font-size: 14px;
  3. position: fixed;
  4. top: 30%;
  5. right: 0;
  6. height: 80px;
  7. width: 36px;
  8. overflow: hidden;
  9. }
  10. #csstab > div {
  11. font: 14px/14px monospace!important;
  12. position: relative;
  13. left: -17px;
  14. top: 25px;
  15. height: 28px;
  16. width: 78px;
  17. text-align: center;
  18. background-color: #333333;
  19. border: 1px solid #AA8866;
  20. color: #885511;
  21. padding: 4px;
  22. cursor: pointer;
  23. -webkit-transform: rotate(-90deg);
  24. -moz-transform: rotate(-90deg);
  25. transform: rotate(-90deg);
  26. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  27. }
  28. #csstab > div:hover {
  29. color: #AA8866;
  30. }
  31. #csidebar {
  32. position: absolute;
  33. background-color: #4C4A41;
  34. z-index: 1000;
  35. overflow: hidden;
  36. line-height: 1!important;
  37. font-family: Helvetica, Arial, sans-serif;
  38. }
  39. #css-stylelist {
  40. max-width: 484px;
  41. width: 100%;
  42. margin-left: 10px;
  43. margin-top: 6px;
  44. font-size: 16px;
  45. background-color: rgb(245, 245, 245);
  46. }
  47. #css-save, #css-close, #css-dock {
  48. float: left;
  49. margin-top: 5px;
  50. margin-left: 10px;
  51. font-size: 14px;
  52. color: #885511;
  53. background-color: #333333;
  54. width: 50px;
  55. text-align: center;
  56. border: 1px solid #885511;
  57. padding: 3px;
  58. text-decoration: none;
  59. cursor: pointer;
  60. }
  61. #cedit {
  62. position: relative;
  63. overflow: hidden;
  64. left: 0;
  65. }
  66. #csidebar.right {
  67. top: 0;
  68. right: 0;
  69. height: 100%;
  70. width: 500px;
  71. }
  72. #csidebar.right #cedit {
  73. margin-top: 35px;
  74. height: 100%;
  75. width: 494px;
  76. }
  77. #csidebar.bottom {
  78. bottom: 0;
  79. left: 0;
  80. width: 100%;
  81. height: 300px;
  82. }
  83. #csidebar.bottom #cedit {
  84. margin-top: 10px;
  85. max-height: 235px;
  86. height: 100%;
  87. width: 100%;
  88. }
  89. #css-save:hover, #css-close:hover, #css-dock:hover {
  90. color: #AA8866;
  91. border-color: #AA8866;
  92. }
  93. #css-switch {
  94. padding: 0 10px;
  95. max-width: 494px;
  96. margin: 10px auto 0;
  97. float: left;
  98. font-size: 14px;
  99. font-family:'Cantarell', 'Ubuntu', 'Trebuchet MS', monospace;
  100. z-index: 1000;
  101. }
  102. #css-switch label {
  103. display: inline-block;
  104. position: relative;
  105. font-size: 14px;
  106. padding: 0 0 0 24px;
  107. vertical-align: baseline;
  108. color: rgba(0, 0, 0, 0.2);
  109. cursor: pointer;
  110. -webkit-transition: color 0.3s;
  111. transition: color 0.3s;
  112. }
  113. #css-switch input[type="checkbox"], #css-switch label::before {
  114. width: 16px;
  115. height: 16px;
  116. left: 0;
  117. position: absolute;
  118. cursor: pointer;
  119. }
  120. #css-switch input[type="checkbox"] {
  121. opacity: 0;
  122. -webkit-appearance: none;
  123. top: 50%;
  124. z-index: 100;
  125. }
  126. #css-switch input[type="checkbox"] + label::before {
  127. opacity: .2;
  128. content:'';
  129. border: 2px solid rgb(0, 0, 0);
  130. -webkit-transition: opacity 0.3s, background 0.3s;
  131. transition: opacity 0.3s, background 0.3s;
  132. }
  133. #css-switch input[type="checkbox"]:checked + label {
  134. -webkit-transition: opacity 0.3s, background 0.3s;
  135. transition: opacity 0.3s, background 0.3s;
  136. opacity: .8;
  137. color: rgb(255, 255, 255);
  138. }
  139. #css-switch input[type="checkbox"]:checked + label::before {
  140. -webkit-transition: opacity 0.3s, background 0.3s;
  141. -moz-transition: opacity 0.3s, background 0.3s;
  142. transition: opacity 0.3s, background 0.3s;
  143. opacity: .8;
  144. border: 2px solid rgb(255, 255, 255);
  145. background-color: rgb(245, 245, 245);
  146. content:'\2717';
  147. color: rgb(0, 0, 0);
  148. }