Advertisement
Guest User

css editor

a guest
Aug 13th, 2018
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.80 KB | None | 0 0
  1. *{
  2.  margin:0;
  3.    padding:0;
  4.   font-family: Consolas, Monaco, Lucida Console, monospace;
  5.    color:#000;
  6. }
  7. html{height:100%;}
  8. .bersih{clear:both;}
  9. a:link, a:hover, a:visited { text-decoration:none; color:#888;}
  10. .background{background:url("http://www.nurulimam.com/wp-content/themes/h95vs4/images/bg.gif")}
  11. #judul {
  12.    margin:20px 0 20px 70px;
  13.         font-size:20px;
  14.         font-weight:normal;
  15.   display: inline-block;
  16. }
  17. #alat{
  18.    border-top:1px solid #e3e3e3;
  19.    border-bottom:1px solid #e3e3e3;
  20.     height:20px;
  21.     padding:10px 0 10px 50px;
  22.    box-shadow:0 5px 10px -7px rgba(0,0,0,.3);
  23.   height:30px;
  24.     background: -webkit-linear-gradient(top,#fff,#efefef);
  25. }
  26. #code,#demo{
  27.  width:50%;
  28.   float:left;
  29. }
  30. #alat h2{
  31.    font-weight:normal;
  32.  text-shadow:0 1px 1px white;
  33.     color:#888;
  34.  line-height:35px;
  35.    display: inline-block;
  36. }
  37. #ide{
  38. position: absolute;
  39. padding-top:10px;
  40. top:120px;
  41. left:0;
  42. right:0;
  43. bottom:0;
  44. }
  45. #editor, #preview{
  46. width:50%;
  47. float:left;
  48. height:100%;
  49.   position:relative;
  50. }
  51. .lebar{
  52. height:100%;
  53. position: absolute;
  54. top:-10px;
  55. left:0;
  56. right:0;
  57. bottom:10px;
  58. }
  59. #editor .container{
  60.   border-right:1px solid #e3e3e3;
  61.  bottom:0;
  62. }
  63. .lebar textarea,.lebar iframe,.CodeMirror{
  64.     height:100%;
  65.     width:100%;
  66.  resize:none;
  67.     border:none;
  68.     outline:none;
  69. }
  70. .lebar iframe{
  71.     position:absolute;
  72. }
  73. .CodeMirror-scroll{height:100%  !important}
  74. .CodeMirror-gutter,.CodeMirror-lines{line-height:20px;}
  75. ::-webkit-scrollbar {
  76.   width : 5px;
  77.     height: 5px;
  78. }
  79. ::-webkit-scrollbar-thumb {
  80.     -webkit-border-radius: 10px;
  81.     border-radius        : 10px;
  82.     background           : #A8DAEA;
  83. }
  84. ::-webkit-slider-thumb element,
  85. ::-webkit-scrollbar-track {
  86.   background           : white;
  87.    -webkit-border-radius: 10px;
  88.     border-radius        : 10px;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement