PageRenderTime 5ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/diff-s.css

http://github.com/yinwang0/ydiff
CSS | 101 lines | 61 code | 21 blank | 19 comment | 0 complexity | 173311c2fbef02efd1cb9af75af7370b MD5 | raw file
Possible License(s): GPL-3.0
  1. /* ydiff - a language-aware tool for comparing programs */
  2. /* Copyright (C) 2011 Yin Wang (yinwang0@gmail.com) */
  3. /* This program is free software: you can redistribute it and/or modify */
  4. /* it under the terms of the GNU General Public License as published by */
  5. /* the Free Software Foundation, either version 3 of the License, or */
  6. /* (at your option) any later version. */
  7. /* This program is distributed in the hope that it will be useful, */
  8. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  9. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  10. /* GNU General Public License for more details. */
  11. /* You should have received a copy of the GNU General Public License */
  12. /* along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. .d {
  14. border: solid 1px #CC929A;
  15. /* border: solid 1px #E6A4AE; */
  16. background-color: LightPink;
  17. }
  18. .i {
  19. border: solid 1px #73BE73;
  20. /* border: solid 1px #82D682; */
  21. background-color: LightGreen;
  22. }
  23. .c {
  24. border: solid 1px #8AADB8;
  25. /* border: solid 1px #9CC2CF; */
  26. background-color: LightBlue;
  27. cursor: pointer;
  28. }
  29. .m {
  30. border: solid 1px LightPink;
  31. /* border: solid 1px #BEBEBE; */
  32. cursor: pointer;
  33. }
  34. .mc {
  35. border: solid 1px LightPink;
  36. background-color: LightBlue;
  37. /* border: solid 1px #BEBEBE; */
  38. cursor: pointer;
  39. }
  40. .u {
  41. border: solid 1px #A9A9A9;
  42. /* border: solid 1px #BEBEBE; */
  43. cursor: pointer;
  44. }
  45. span.lineno {
  46. color: lightgrey;
  47. -webkit-user-select: none;
  48. -moz-user-select: none;
  49. }
  50. span.keyword {
  51. /* color: #007070; */
  52. font-weight: 700;
  53. }
  54. div.line {
  55. }
  56. div.src {
  57. width:48%;
  58. height:98%;
  59. overflow:scroll;
  60. border:1px solid;
  61. float:left;
  62. padding:0.5%;
  63. }
  64. div.stats {
  65. border: solid 1px grey;
  66. z-index: 1000;
  67. width: 80%;
  68. padding-left: 5%;
  69. }
  70. pre.stats {
  71. color: grey;
  72. -webkit-user-select: none;
  73. -moz-user-select: none;
  74. }
  75. pre {
  76. line-height: 200%;
  77. }
  78. p {
  79. line-height: 200%;
  80. }