color_ts.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* To change the colors of the SVG images, use this website :
  2. https://codepen.io/sosuke/pen/Pjoqqp */
  3. @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400");
  4. @import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");
  5. #waitTitle {
  6. color: rgb(208, 23, 211);
  7. }
  8. #exampleList #exampleBanner h1 {
  9. color: #ae00ef;
  10. }
  11. #exampleList .horizontalSeparator {
  12. border-top: 1px solid #ae00ef;
  13. }
  14. #exampleList .categoryContainer .itemLine .itemContent .itemLineDocLink {
  15. color: #ae00ef;
  16. }
  17. #exampleList .categoryContainer .itemLine .itemContent .itemLinePGLink {
  18. color: #ae00ef;
  19. }
  20. #fpsLabel {
  21. background-color: #9147c9;
  22. }
  23. .navbar .title {
  24. color: #bb47c9;
  25. }
  26. .navbar .version {
  27. color: #9147c9;
  28. }
  29. .button {
  30. background-color: #9147c9;
  31. }
  32. .button:hover {
  33. background-color: #bb47c9;
  34. }
  35. .navbar .button.run {
  36. background-color: #bb47c9;
  37. }
  38. .navbar .select .toDisplay {
  39. border: 1px solid #9147c9;
  40. }
  41. .navbar .select .subSelect .toDisplaySub {
  42. border: 1px solid #9147c9;
  43. }
  44. .navbar .select .toDisplay .option {
  45. font-size: 0.9em;
  46. height: 35px;
  47. line-height: 35px;
  48. padding: 0px 5px 0px 5px;
  49. text-align: center;
  50. border-bottom : 1px solid rgba(0,0,0,0.1);
  51. }
  52. .navbar .select .toDisplay .option.light:hover {
  53. cursor: pointer;
  54. background-color: #d9d9d9;
  55. }
  56. .navbar .select .toDisplay .option.dark {
  57. background-color: #333;
  58. color: white;
  59. }
  60. .navbar .select .toDisplay .option.light {
  61. background-color: white;
  62. color: #9147c9;
  63. }
  64. .navbar .select .toDisplayBig {
  65. border: 1px solid #9147c9;
  66. }
  67. .navbar .select .toDisplayBig.light {
  68. color: #bb47c9;
  69. }
  70. .navbar .select .toDisplayBig a.light {
  71. color: #9147c9;
  72. }