You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

stylesheet.css 6.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /*******************************************************************************
  2. Slate Theme for GitHub Pages
  3. by Jason Costello, @jsncostello
  4. *******************************************************************************/
  5. @import url(normalize.css);
  6. @import url(pygment_trac.css);
  7. /*******************************************************************************
  8. Theme Styles
  9. *******************************************************************************/
  10. *, *:before, *:after {
  11. -moz-box-sizing: border-box;
  12. -webkit-box-sizing: border-box;
  13. box-sizing: border-box;
  14. }
  15. body {
  16. color:#373737;
  17. background: #212121;
  18. font-size: 18px;
  19. font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  20. line-height: 1.5;
  21. -webkit-font-smoothing: antialiased;
  22. }
  23. h1, h2, h3, h4, h5, h6 {
  24. margin: 10px 0;
  25. font-weight: 700;
  26. font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
  27. letter-spacing: -1px;
  28. }
  29. h1 {
  30. font-size: 36px;
  31. font-weight: 700;
  32. }
  33. h2 {
  34. padding-bottom: 10px;
  35. font-size: 32px;
  36. background: url('../images/bg_hr.png') repeat-x bottom;
  37. }
  38. h3 {
  39. font-size: 24px;
  40. }
  41. h4 {
  42. font-size: 21px;
  43. }
  44. h5 {
  45. font-size: 18px;
  46. }
  47. h6 {
  48. font-size: 16px;
  49. }
  50. p {
  51. font-size: 18px;
  52. margin: 10px 0 15px 0;
  53. }
  54. footer p {
  55. color: #f2f2f2;
  56. }
  57. a {
  58. text-decoration: none;
  59. color: #007edf;
  60. text-shadow: none;
  61. }
  62. a:hover, a:focus {text-decoration: underline;}
  63. footer a {
  64. /* color: #F2F2F2;
  65. text-decoration: underline;*/
  66. }
  67. em {
  68. font-style: italic;
  69. }
  70. strong {
  71. font-weight: bold;
  72. }
  73. img {
  74. position: relative;
  75. margin: 0 auto;
  76. max-width: 739px;
  77. padding: 5px;
  78. margin: 10px 0 10px 0;
  79. border: 1px solid #ebebeb;
  80. box-shadow: 0 0 5px #ebebeb;
  81. -webkit-box-shadow: 0 0 5px #ebebeb;
  82. -moz-box-shadow: 0 0 5px #ebebeb;
  83. -o-box-shadow: 0 0 5px #ebebeb;
  84. -ms-box-shadow: 0 0 5px #ebebeb;
  85. }
  86. p img {
  87. display: inline;
  88. margin: 0;
  89. padding: 0;
  90. vertical-align: middle;
  91. text-align: center;
  92. border: none;
  93. }
  94. pre, code {
  95. width: 100%;
  96. color: #222;
  97. background-color: #fff;
  98. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  99. font-size: 14px;
  100. border-radius: 2px;
  101. -moz-border-radius: 2px;
  102. -webkit-border-radius: 2px;
  103. box-shadow: 0 0 10px rgba(0,0,0,.1);
  104. }
  105. pre {
  106. padding: 10px;
  107. overflow: auto;
  108. }
  109. code {
  110. padding: 3px;
  111. margin: 0 3px;
  112. }
  113. pre code {
  114. display: block;
  115. box-shadow: none;
  116. }
  117. blockquote {
  118. color: #666;
  119. margin: 0 0 20px 2px;
  120. padding-left: 20px;
  121. border-left: 3px solid #bbb;
  122. font-style: italic;
  123. }
  124. ul, ol, dl {
  125. margin: 0 0 15px 0;
  126. padding-left: 20px;
  127. }
  128. dl dt {
  129. font-weight: bold;
  130. }
  131. dl dd {
  132. margin-left: 0;
  133. padding-left: 0;
  134. font-style: italic;
  135. }
  136. dl p {
  137. padding-left: 20px;
  138. font-style: italic;
  139. }
  140. hr {
  141. height: 1px;
  142. margin-bottom: 5px;
  143. border: none;
  144. background: url('../images/bg_hr.png') repeat-x center;
  145. }
  146. table {
  147. border: 1px solid #373737;
  148. margin-bottom: 20px;
  149. text-align: left;
  150. }
  151. th {
  152. font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  153. padding: 10px;
  154. background: #373737;
  155. color: #fff;
  156. }
  157. td {
  158. padding: 10px;
  159. border: 1px solid #373737;
  160. }
  161. form {
  162. background: #f2f2f2;
  163. padding: 20px;
  164. }
  165. /*******************************************************************************
  166. Full-Width Styles
  167. *******************************************************************************/
  168. .outer {
  169. width: 100%;
  170. }
  171. .inner {
  172. position: relative;
  173. max-width: 640px;
  174. padding: 20px 10px;
  175. margin: 0 auto;
  176. }
  177. #forkme_banner {
  178. display: block;
  179. position: absolute;
  180. top:0;
  181. right: 10px;
  182. z-index: 10;
  183. padding: 10px 50px 10px 10px;
  184. color: #fff;
  185. background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
  186. font-weight: 700;
  187. box-shadow: 0 0 10px rgba(0,0,0,.5);
  188. border-bottom-left-radius: 2px;
  189. border-bottom-right-radius: 2px;
  190. }
  191. #logo_banner {
  192. display: block;
  193. position: absolute;
  194. top: 60px;
  195. left: -300px;
  196. z-index: 10;
  197. padding: 200px 250px 10px 10px;
  198. background: url('../images/openblas.png') no-repeat ;
  199. font-weight: 700;
  200. border-bottom-left-radius: 2px;
  201. border-bottom-right-radius: 2px;
  202. }
  203. #header_wrap {
  204. background: #212121;
  205. }
  206. #header_wrap .inner {
  207. padding: 50px 10px 30px 10px;
  208. }
  209. #project_title {
  210. margin: 0;
  211. color: #fff;
  212. font-size: 42px;
  213. font-weight: 700;
  214. text-shadow: #111 0px 0px 10px;
  215. }
  216. #project_tagline {
  217. color: #fff;
  218. font-size: 24px;
  219. font-weight: 300;
  220. background: none;
  221. text-shadow: #111 0px 0px 10px;
  222. }
  223. #downloads {
  224. position: absolute;
  225. width: 210px;
  226. z-index: 10;
  227. bottom: -40px;
  228. right: 0;
  229. height: 70px;
  230. background: url('../images/icon_download.png') no-repeat 0% 90%;
  231. }
  232. .zip_download_link {
  233. display: block;
  234. float: right;
  235. width: 90px;
  236. height:70px;
  237. text-indent: -5000px;
  238. overflow: hidden;
  239. background: url(../images/sprite_download.png) no-repeat bottom left;
  240. }
  241. .tar_download_link {
  242. display: block;
  243. float: right;
  244. width: 90px;
  245. height:70px;
  246. text-indent: -5000px;
  247. overflow: hidden;
  248. background: url(../images/sprite_download.png) no-repeat bottom right;
  249. margin-left: 10px;
  250. }
  251. .zip_download_link:hover {
  252. background: url(../images/sprite_download.png) no-repeat top left;
  253. }
  254. .tar_download_link:hover {
  255. background: url(../images/sprite_download.png) no-repeat top right;
  256. }
  257. #main_content_wrap {
  258. background: #f2f2f2;
  259. border-top: 1px solid #111;
  260. border-bottom: 1px solid #111;
  261. }
  262. #main_content {
  263. padding-top: 40px;
  264. }
  265. #footer_wrap {
  266. background: #212121;
  267. }
  268. /*******************************************************************************
  269. Small Device Styles
  270. *******************************************************************************/
  271. @media screen and (max-width: 480px) {
  272. body {
  273. font-size:14px;
  274. }
  275. #downloads {
  276. display: none;
  277. }
  278. .inner {
  279. min-width: 320px;
  280. max-width: 480px;
  281. }
  282. #project_title {
  283. font-size: 32px;
  284. }
  285. h1 {
  286. font-size: 28px;
  287. }
  288. h2 {
  289. font-size: 24px;
  290. }
  291. h3 {
  292. font-size: 21px;
  293. }
  294. h4 {
  295. font-size: 18px;
  296. }
  297. h5 {
  298. font-size: 14px;
  299. }
  300. h6 {
  301. font-size: 12px;
  302. }
  303. code, pre {
  304. min-width: 320px;
  305. max-width: 480px;
  306. font-size: 11px;
  307. }
  308. }

OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.