main.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /* Global */
  2. p,a,div,span,h1,h2,h3,h4,h5,h6{
  3. font-family: 'Source Sans Pro', sans-serif;
  4. }
  5. body.en *:not(i){
  6. font-family: 'Source Sans Pro', 'Noto Sans TC',sans-serif !important;
  7. }
  8. body.zh *:not(i){
  9. font-family: 'Noto Sans TC',sans-serif !important;
  10. }
  11. body.jp *:not(i){
  12. font-family: "Noto Sans JP", sans-serif !important;
  13. }
  14. .centered.title{
  15. padding: 2em;
  16. margin-bottom: 2em;
  17. text-align: center;
  18. }
  19. .centered.title h1{
  20. font-weight: 300 !important;
  21. }
  22. #backToTopBtn{
  23. position: fixed;
  24. bottom: 1em;
  25. right: 1em;
  26. display:none;
  27. z-index: 999;
  28. border: 1px solid white;
  29. }
  30. /* Main Menu */
  31. #mainmenu{
  32. padding-top: 0.4em;
  33. padding-bottom: 0.4em;
  34. border-radius: 0;
  35. margin-bottom: 0;
  36. margin-top: 0;
  37. }
  38. #rwdmenubtn{
  39. display:none;
  40. position: absolute;
  41. }
  42. #mainmenu .ui.secondary.inverted.menu .link.item:not(.disabled), .ui.secondary.inverted.menu a.item:not(.disabled){
  43. font-size: 1.1em;
  44. font-weight: 500;
  45. border-bottom: 1px solid transparent;
  46. transition: border-bottom ease-in-out 0.1s;
  47. color: white !important;
  48. border-radius: 0;
  49. }
  50. #mainmenu #mainmenu .ui.secondary.inverted.menu .link.item:not(.disabled), .ui.secondary.inverted.menu a.item:not(.disabled):hover{
  51. background-color: transparent;
  52. border-bottom: 1px solid #82adfc;
  53. color: #82adfc !important;
  54. }
  55. /* Image Sldiers */
  56. #slideshowBanner{
  57. background-color: #1b1c1d !important;
  58. position: relative;
  59. }
  60. .slideshow {
  61. width: 100%;
  62. overflow: hidden;
  63. border-radius: 0;
  64. max-height: 500px;
  65. }
  66. .slideshow .slides {
  67. display: flex;
  68. transition: transform 1s ease-in-out;
  69. opacity: 0.6;
  70. filter: blur(2px);
  71. pointer-events: none;
  72. user-select: none;
  73. }
  74. .slideshow .slide {
  75. min-width: 100%;
  76. box-sizing: border-box;
  77. }
  78. .slideshow .slide img {
  79. width: 100%;
  80. display: block;
  81. }
  82. .slideshow .dots{
  83. text-align: center;
  84. position: absolute;
  85. bottom: 15px;
  86. width: 100%;
  87. }
  88. .slideshow .dot {
  89. display: inline-block;
  90. width: 10px;
  91. height: 10px;
  92. margin: 0 5px;
  93. background-color: #bebebe;
  94. border-radius: 50%;
  95. cursor: pointer;
  96. transition: background-color 0.6s ease;
  97. }
  98. .dot.active {
  99. background-color: #ffffff;
  100. }
  101. #slideshowBanner .title{
  102. display: inline-block;
  103. width: 100%;
  104. max-width: 500px;
  105. text-align: center;
  106. position: absolute;
  107. top: 50%;
  108. left: 50%;
  109. transform: translateX(-50%) translateY(-50%);
  110. color: white;
  111. }
  112. #slideshowBanner .title .scrolldownTips{
  113. display: none;
  114. }
  115. #slideshowBanner .title h1{
  116. font-size: 4em;
  117. font-weight: 600;
  118. margin-bottom: 0;
  119. }
  120. #slideshowBanner .title p{
  121. font-size: 1.2em;
  122. }
  123. /* About ArozOS */
  124. .about-text-wrapper{
  125. margin-top: 3em;
  126. }
  127. .about-text-wrapper p, .about-text-wrapper .list .item{
  128. font-weight: 300;
  129. }
  130. .about-title{
  131. font-size: 2.4em;
  132. font-weight: 300;
  133. margin-bottom: 0.6em;
  134. }
  135. .about-title b{
  136. font-weight: 800;
  137. }
  138. .about-text-wrapper .ui.list .item{
  139. margin-bottom: 0.6em;
  140. }
  141. .about-text-wrapper .ui.list .item .icon{
  142. padding-top: 0.15em;
  143. }
  144. /* Features */
  145. #features{
  146. margin-bottom: 3em;
  147. }
  148. /* Tech Spec */
  149. #techspec .centered.title{
  150. color: white;
  151. }
  152. .blackbanner{
  153. width: 100%;
  154. background-color: #1b1c1d;
  155. min-height: 300px;
  156. color: white;
  157. }
  158. /* Download */
  159. .downloadButton {
  160. margin-top: 0.4em !important;
  161. }
  162. .downloadTabWrapper{
  163. width: 100%;
  164. overflow-x: hidden;
  165. }
  166. #download .ui.black.message{
  167. word-break: break-all;
  168. }
  169. /* Learn More */
  170. #learnmore .linkicons{
  171. text-align: center;
  172. width: 100%;
  173. }
  174. #learnmore .linkicons .divider{
  175. margin-left: 1em;
  176. margin-right: 1em;
  177. }
  178. #learnmore .linkicons .externallink{
  179. margin-bottom: 0.6em;
  180. transition: opacity 0.1s ease-in-out;
  181. }
  182. #learnmore .linkicons .externallink i{
  183. /* color: #1b1c1d; */
  184. font-weight: 300;
  185. font-size: 1.5em;
  186. }
  187. #learnmore .linkicons .externallink:hover{
  188. opacity: 0.8;
  189. }
  190. #learnmore .linkicons .externallink .content{
  191. color: #1b1c1d;
  192. font-weight: 500;
  193. font-size: 0.6em;
  194. }
  195. /* Footer */
  196. #footer{
  197. background-color: #1b1c1d;
  198. color: rgb(236, 236, 236);
  199. }
  200. #footer .bottom-attach .divider{
  201. color: rgb(97, 97, 97);
  202. }
  203. #footer .ui.list .title{
  204. margin-bottom: 0.6em;
  205. }
  206. /* RWD Rules */
  207. @media (max-width:960px) {
  208. /* Main menu */
  209. #mainmenu{
  210. display:none;
  211. z-index: 99;
  212. position: absolute;
  213. top: 0;
  214. left: 0;
  215. width: 100%;
  216. }
  217. #rwdmenubtn{
  218. display: block;
  219. position: absolute;
  220. top: 0.4em;
  221. right: 0.4em;
  222. z-index: 100;
  223. }
  224. /* Slideshows */
  225. .slideshow {
  226. min-height: 100vh;
  227. }
  228. .slideshow .slide{
  229. height: 100% !important;
  230. min-width: none;
  231. }
  232. .slideshow .slide img{
  233. height: 100%;
  234. width: auto;
  235. }
  236. #slideshowBanner .title .scrolldownTips{
  237. margin-top: 2em;
  238. display: block;
  239. }
  240. #slideshowBanner .title .scrolldownTips img{
  241. left: 50%;
  242. transform: translateX(-50%);
  243. }
  244. #download .stackable.tabular.menu .active.item{
  245. background-color: rgb(243, 243, 243);
  246. border-width: 0;
  247. border-radius: 0.4em !important;
  248. }
  249. }