A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

116 lines
2.2 KiB

  1. /*
  2. Stylesheet for index.html.
  3. */
  4. @import mixins
  5. @import variables
  6. @font-face
  7. font-family: "Inconsolata"
  8. src: url("../../Inconsolata.otf") format("opentype")
  9. div#search-field
  10. @extend .t2
  11. bottom: 0
  12. height: 50%
  13. left: 0
  14. margin: auto
  15. margin-top: 15%
  16. max-height: 100px
  17. position: absolute
  18. right: 0
  19. top: 0
  20. width: 34%
  21. #title
  22. font-size: 4em
  23. padding-bottom: 0.5em
  24. text-align: center
  25. #title-bit
  26. color: $baseColor1
  27. #title-angle
  28. color: $baseColor3
  29. #title-shift
  30. color: $baseColor2
  31. font-style: italic
  32. form#search-bar
  33. input[type="text"]
  34. @include vendor(box-sizing, border-box)
  35. border: 1px solid $baseColor1
  36. font-size: 1.1em
  37. margin-bottom: 0px
  38. padding: 6px
  39. width: 100%
  40. div#advanced-search
  41. display: none
  42. background-color: white
  43. border: 1px solid $baseColor2
  44. margin: 0px
  45. overflow: auto
  46. >div
  47. @include vendor(box-sizing, border-box)
  48. float: left
  49. height: 100%
  50. >#col1
  51. width: 10%
  52. >#col2
  53. width: 84%
  54. ul
  55. list-style: none
  56. li
  57. margin-bottom: 0.5em
  58. label
  59. display: block
  60. font-size: 1.1em
  61. input[type="text"]
  62. border-color: $baseColor3
  63. font-size: 1em
  64. padding: 2px
  65. width: 100%
  66. #upper-half
  67. >div
  68. float: left
  69. width: 50%
  70. &.partly-visible
  71. height: 1%
  72. margin-top: 3%
  73. width: 60%
  74. #title
  75. display: none
  76. div#results
  77. margin-left: auto
  78. margin-right: auto
  79. width: 80%
  80. div.result
  81. background-color: none
  82. font-family: Arial, "Inconsolata"
  83. margin-bottom: 10%
  84. margin-top: 1%
  85. padding: 1%
  86. &.cascade
  87. @extend .t3
  88. margin-bottom: 0%