_utilities.scss 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  1. /*
  2. // crowi
  3. $brand-primary: #43676b;
  4. $crowiHeaderBackground: darken($brand-primary, 15%);
  5. $crowiHeaderHeight: 50px;
  6. // $crowiAsideBackground: darken($crowiHeaderBackground, 5%);
  7. $crowiAsideBackground: #fcfcfc;
  8. $crowiFooterBackground: $crowiHeaderBackground;
  9. $crowiFooterHeight: 34px;
  10. */
  11. //
  12. // Variables
  13. // --------------------------------------------------
  14. // Global values
  15. // --------------------------------------------------
  16. // Grays
  17. // -------------------------
  18. // $gray-darker: lighten(#000, 13.5%); // #222
  19. // $gray-dark: lighten(#000, 20%); // #333
  20. // $gray: lighten(#000, 33.5%); // #555
  21. // $gray-light: lighten(#000, 60%); // #999
  22. // $gray-lighter: lighten(#000, 93.5%); // #eee
  23. //
  24. // // Brand colors
  25. // // -------------------------
  26. //
  27. //$brand-primary: #4d4398;
  28. //$brand-primary: #622d18;
  29. //$brand-primary: #e5a323;
  30. // $brand-success: #5cb85c;
  31. // $brand-warning: #f0ad4e;
  32. // $brand-danger: #d9534f;
  33. // $brand-info: #5bc0de;
  34. //
  35. // // Scaffolding
  36. // // -------------------------
  37. //
  38. //$body-bg: $crowiHeaderBackground;
  39. // $text-color: $gray-dark;
  40. //
  41. // // Links
  42. // // -------------------------
  43. //
  44. // $link-color: $brand-primary;
  45. // $link-hover-color: darken($link-color, 15%);
  46. //
  47. // // Typography
  48. // // -------------------------
  49. //
  50. // $font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  51. // $font-family-serif: Georgia, "Times New Roman", Times, serif;
  52. // $font-family-monospace: Osaka-Mono, "MS Gothic", Monaco, Menlo, Consolas, "Courier New", monospace;
  53. // $font-family-monospace-not-strictly: Monaco, Menlo, Consolas, "Courier New", MeiryoKe_Console, "M+ 1m", monospace;
  54. // $font-family-base: $font-family-sans-serif;
  55. //
  56. // $font-size-base: 14px;
  57. // $font-size-large: ceil($font-size-base * 1.25); // ~18px
  58. // $font-size-small: ceil($font-size-base * 0.85); // ~12px
  59. //
  60. // $font-size-h1: floor($font-size-base * 2.6); // ~36px
  61. // $font-size-h2: floor($font-size-base * 2.15); // ~30px
  62. // $font-size-h3: ceil($font-size-base * 1.7); // ~24px
  63. // $font-size-h4: ceil($font-size-base * 1.25); // ~18px
  64. // $font-size-h5: $font-size-base;
  65. // $font-size-h6: ceil($font-size-base * 0.85); // ~12px
  66. //
  67. // $line-height-base: 1.428571429; // 20/14
  68. // $line-height-computed: floor($font-size-base * $line-height-base); // ~20px
  69. //
  70. // $headings-font-family: $font-family-base;
  71. // $headings-font-weight: 500;
  72. // $headings-line-height: 1.1;
  73. // $headings-color: inherit;
  74. //
  75. //
  76. // // Iconography
  77. // // -------------------------
  78. //
  79. // $icon-font-path: "../fonts/";
  80. // $icon-font-name: "glyphicons-halflings-regular";
  81. //
  82. //
  83. // // Components
  84. // // -------------------------
  85. // // Based on 14px font-size and 1.428 line-height (~20px to start)
  86. //
  87. // $padding-base-vertical: 6px;
  88. // $padding-base-horizontal: 12px;
  89. //
  90. // $padding-large-vertical: 10px;
  91. // $padding-large-horizontal: 16px;
  92. //
  93. // $padding-small-vertical: 5px;
  94. // $padding-small-horizontal: 10px;
  95. //
  96. // $line-height-large: 1.33;
  97. // $line-height-small: 1.5;
  98. //
  99. // $border-radius-base: 4px;
  100. // $border-radius-large: 6px;
  101. // $border-radius-small: 3px;
  102. //
  103. // $component-active-color: #fff;
  104. // $component-active-bg: $brand-primary;
  105. //
  106. // $caret-width-base: 4px;
  107. // $caret-width-large: 5px;
  108. //
  109. // // Tables
  110. // // -------------------------
  111. //
  112. // $table-cell-padding: 8px;
  113. // $table-condensed-cell-padding: 5px;
  114. //
  115. // $table-bg: transparent; // overall background-color
  116. // $table-bg-accent: #f9f9f9; // for striping
  117. // $table-bg-hover: #f5f5f5;
  118. // $table-bg-active: $table-bg-hover;
  119. //
  120. // $table-border-color: #ddd; // table and cell border
  121. //
  122. //
  123. // // Buttons
  124. // // -------------------------
  125. //
  126. // $btn-font-weight: normal;
  127. //
  128. // $btn-default-color: #333;
  129. // $btn-default-bg: #fff;
  130. // $btn-default-border: #ccc;
  131. //
  132. // $btn-primary-color: #fff;
  133. // $btn-primary-bg: $brand-primary;
  134. // $btn-primary-border: darken($btn-primary-bg, 5%);
  135. //
  136. // $btn-success-color: #fff;
  137. // $btn-success-bg: $brand-success;
  138. // $btn-success-border: darken($btn-success-bg, 5%);
  139. //
  140. // $btn-warning-color: #fff;
  141. // $btn-warning-bg: $brand-warning;
  142. // $btn-warning-border: darken($btn-warning-bg, 5%);
  143. //
  144. // $btn-danger-color: #fff;
  145. // $btn-danger-bg: $brand-danger;
  146. // $btn-danger-border: darken($btn-danger-bg, 5%);
  147. //
  148. // $btn-info-color: #fff;
  149. // $btn-info-bg: $brand-info;
  150. // $btn-info-border: darken($btn-info-bg, 5%);
  151. //
  152. // $btn-link-disabled-color: $gray-light;
  153. //
  154. //
  155. // // Forms
  156. // // -------------------------
  157. //
  158. // $input-bg: #fff;
  159. // $input-bg-disabled: $gray-lighter;
  160. //
  161. // $input-color: $gray;
  162. // $input-border: #ccc;
  163. // $input-border-radius: $border-radius-base;
  164. // $input-border-focus: #66afe9;
  165. //
  166. // $input-color-placeholder: $gray-light;
  167. //
  168. // $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2);
  169. // $input-height-large: (floor($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2);
  170. // $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2);
  171. //
  172. // $legend-color: $gray-dark;
  173. // $legend-border-color: #e5e5e5;
  174. //
  175. // $input-group-addon-bg: $gray-lighter;
  176. // $input-group-addon-border-color: $input-border;
  177. //
  178. //
  179. // // Dropdowns
  180. // // -------------------------
  181. //
  182. // $dropdown-bg: #fff;
  183. // $dropdown-border: rgba(0,0,0,.15);
  184. // $dropdown-fallback-border: #ccc;
  185. // $dropdown-divider-bg: #e5e5e5;
  186. //
  187. // $dropdown-link-color: $gray-dark;
  188. // $dropdown-link-hover-color: darken($gray-dark, 5%);
  189. // $dropdown-link-hover-bg: #f5f5f5;
  190. //
  191. // $dropdown-link-active-color: $component-active-color;
  192. // $dropdown-link-active-bg: $component-active-bg;
  193. //
  194. // $dropdown-link-disabled-color: $gray-light;
  195. //
  196. // $dropdown-header-color: $gray-light;
  197. //
  198. // $dropdown-caret-color: #000;
  199. //
  200. //
  201. // // COMPONENT VARIABLES
  202. // // --------------------------------------------------
  203. //
  204. //
  205. // // Z-index master list
  206. // // -------------------------
  207. // // Used for a bird's eye view of components dependent on the z-axis
  208. // // Try to avoid customizing these :)
  209. //
  210. // $zindex-navbar: 1000;
  211. // $zindex-dropdown: 1000;
  212. // $zindex-popover: 1010;
  213. // $zindex-tooltip: 1030;
  214. // $zindex-navbar-fixed: 1030;
  215. // $zindex-modal-background: 1040;
  216. // $zindex-modal: 1050;
  217. //
  218. // // Media queries breakpoints
  219. // // --------------------------------------------------
  220. //
  221. // // Extra small screen / phone
  222. // // Note: Deprecated $screen-xs and $screen-phone as of v3.0.1
  223. // $screen-xs: 480px;
  224. // $screen-xs-min: $screen-xs;
  225. // $screen-phone: $screen-xs-min;
  226. //
  227. // // Small screen / tablet
  228. // // Note: Deprecated $screen-sm and $screen-tablet as of v3.0.1
  229. // $screen-sm: 768px;
  230. // $screen-sm-min: $screen-sm;
  231. // $screen-tablet: $screen-sm-min;
  232. //
  233. // // Medium screen / desktop
  234. // // Note: Deprecated $screen-md and $screen-desktop as of v3.0.1
  235. // $screen-md: 992px;
  236. // $screen-md-min: $screen-md;
  237. // $screen-desktop: $screen-md-min;
  238. //
  239. // // Large screen / wide desktop
  240. // // Note: Deprecated $screen-lg and $screen-lg-desktop as of v3.0.1
  241. // $screen-lg: 1200px;
  242. // $screen-lg-min: $screen-lg;
  243. // $screen-lg-desktop: $screen-lg-min;
  244. //
  245. // // So media queries don't overlap when required, provide a maximum
  246. // $screen-xs-max: ($screen-sm-min - 1);
  247. // $screen-sm-max: ($screen-md-min - 1);
  248. // $screen-md-max: ($screen-lg-min - 1);
  249. //
  250. //
  251. // // Grid system
  252. // // --------------------------------------------------
  253. //
  254. // // Number of columns in the grid system
  255. // $grid-columns: 12;
  256. // // Padding, to be divided by two and applied to the left and right of all columns
  257. // $grid-gutter-width: 30px;
  258. // // Point at which the navbar stops collapsing
  259. // $grid-float-breakpoint: $screen-sm-min;
  260. //
  261. //
  262. // // Navbar
  263. // // -------------------------
  264. //
  265. // // Basics of a navbar
  266. // $navbar-height: 50px;
  267. // $navbar-margin-bottom: $line-height-computed;
  268. // $navbar-border-radius: $border-radius-base;
  269. // $navbar-padding-horizontal: floor($grid-gutter-width / 2);
  270. // $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2);
  271. //
  272. // $navbar-default-color: #777;
  273. // $navbar-default-bg: #f8f8f8;
  274. // $navbar-default-border: darken($navbar-default-bg, 6.5%);
  275. //
  276. // // Navbar links
  277. // $navbar-default-link-color: #777;
  278. // $navbar-default-link-hover-color: #333;
  279. // $navbar-default-link-hover-bg: transparent;
  280. // $navbar-default-link-active-color: #555;
  281. // $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%);
  282. // $navbar-default-link-disabled-color: #ccc;
  283. // $navbar-default-link-disabled-bg: transparent;
  284. //
  285. // // Navbar brand label
  286. // $navbar-default-brand-color: $navbar-default-link-color;
  287. // $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%);
  288. // $navbar-default-brand-hover-bg: transparent;
  289. //
  290. // // Navbar toggle
  291. // $navbar-default-toggle-hover-bg: #ddd;
  292. // $navbar-default-toggle-icon-bar-bg: #ccc;
  293. // $navbar-default-toggle-border-color: #ddd;
  294. //
  295. //
  296. // // Inverted navbar
  297. // //
  298. // // Reset inverted navbar basics
  299. // $navbar-inverse-color: $gray-light;
  300. // $navbar-inverse-bg: #222;
  301. // $navbar-inverse-border: darken($navbar-inverse-bg, 10%);
  302. //
  303. // // Inverted navbar links
  304. // $navbar-inverse-link-color: $gray-light;
  305. // $navbar-inverse-link-hover-color: #fff;
  306. // $navbar-inverse-link-hover-bg: transparent;
  307. // $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color;
  308. // $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%);
  309. // $navbar-inverse-link-disabled-color: #444;
  310. // $navbar-inverse-link-disabled-bg: transparent;
  311. //
  312. // // Inverted navbar brand label
  313. // $navbar-inverse-brand-color: $navbar-inverse-link-color;
  314. // $navbar-inverse-brand-hover-color: #fff;
  315. // $navbar-inverse-brand-hover-bg: transparent;
  316. //
  317. // // Inverted navbar toggle
  318. // $navbar-inverse-toggle-hover-bg: #333;
  319. // $navbar-inverse-toggle-icon-bar-bg: #fff;
  320. // $navbar-inverse-toggle-border-color: #333;
  321. //
  322. //
  323. // // Navs
  324. // // -------------------------
  325. //
  326. // $nav-link-padding: 10px 15px;
  327. // $nav-link-hover-bg: $gray-lighter;
  328. //
  329. // $nav-disabled-link-color: $gray-light;
  330. // $nav-disabled-link-hover-color: $gray-light;
  331. //
  332. // $nav-open-link-hover-color: #fff;
  333. // $nav-open-caret-border-color: #fff;
  334. //
  335. // // Tabs
  336. // $nav-tabs-border-color: #ddd;
  337. //
  338. // $nav-tabs-link-hover-border-color: $gray-lighter;
  339. //
  340. // $nav-tabs-active-link-hover-bg: $body-bg;
  341. // $nav-tabs-active-link-hover-color: $gray;
  342. // $nav-tabs-active-link-hover-border-color: #ddd;
  343. //
  344. // $nav-tabs-justified-link-border-color: #ddd;
  345. // $nav-tabs-justified-active-link-border-color: $body-bg;
  346. //
  347. // // Pills
  348. // $nav-pills-border-radius: $border-radius-base;
  349. // $nav-pills-active-link-hover-bg: $component-active-bg;
  350. // $nav-pills-active-link-hover-color: $component-active-color;
  351. //
  352. //
  353. // // Pagination
  354. // // -------------------------
  355. //
  356. // $pagination-bg: #fff;
  357. // $pagination-border: #ddd;
  358. //
  359. // $pagination-hover-bg: $gray-lighter;
  360. //
  361. // $pagination-active-bg: $brand-primary;
  362. // $pagination-active-color: #fff;
  363. //
  364. // $pagination-disabled-color: $gray-light;
  365. //
  366. //
  367. // // Pager
  368. // // -------------------------
  369. //
  370. // $pager-border-radius: 15px;
  371. // $pager-disabled-color: $gray-light;
  372. //
  373. //
  374. // // Jumbotron
  375. // // -------------------------
  376. //
  377. // $jumbotron-padding: 30px;
  378. // $jumbotron-color: inherit;
  379. // $jumbotron-bg: $gray-lighter;
  380. // $jumbotron-heading-color: inherit;
  381. // $jumbotron-font-size: ceil($font-size-base * 1.5);
  382. //
  383. //
  384. // // Form states and alerts
  385. // // -------------------------
  386. //
  387. // $state-success-text: #468847;
  388. // $state-success-bg: #dff0d8;
  389. // $state-success-border: darken(spin($state-success-bg, -10), 5%);
  390. //
  391. // $state-info-text: #3a87ad;
  392. // $state-info-bg: #d9edf7;
  393. // $state-info-border: darken(spin($state-info-bg, -10), 7%);
  394. //
  395. // $state-warning-text: #c09853;
  396. // $state-warning-bg: #fcf8e3;
  397. // $state-warning-border: darken(spin($state-warning-bg, -10), 5%);
  398. //
  399. // $state-danger-text: #b94a48;
  400. // $state-danger-bg: #f2dede;
  401. // $state-danger-border: darken(spin($state-danger-bg, -10), 5%);
  402. //
  403. //
  404. // // Tooltips
  405. // // -------------------------
  406. // $tooltip-max-width: 200px;
  407. // $tooltip-color: #fff;
  408. // $tooltip-bg: #000;
  409. //
  410. // $tooltip-arrow-width: 5px;
  411. // $tooltip-arrow-color: $tooltip-bg;
  412. //
  413. //
  414. // // Popovers
  415. // // -------------------------
  416. // $popover-bg: #fff;
  417. // $popover-max-width: 276px;
  418. // $popover-border-color: rgba(0,0,0,.2);
  419. // $popover-fallback-border-color: #ccc;
  420. //
  421. // $popover-title-bg: darken($popover-bg, 3%);
  422. //
  423. // $popover-arrow-width: 10px;
  424. // $popover-arrow-color: #fff;
  425. //
  426. // $popover-arrow-outer-width: ($popover-arrow-width + 1);
  427. // $popover-arrow-outer-color: rgba(0,0,0,.25);
  428. // $popover-arrow-outer-fallback-color: #999;
  429. //
  430. //
  431. // // Labels
  432. // // -------------------------
  433. //
  434. // $label-default-bg: $gray-light;
  435. // $label-primary-bg: $brand-primary;
  436. // $label-success-bg: $brand-success;
  437. // $label-info-bg: $brand-info;
  438. // $label-warning-bg: $brand-warning;
  439. // $label-danger-bg: $brand-danger;
  440. //
  441. // $label-color: #fff;
  442. // $label-link-hover-color: #fff;
  443. //
  444. //
  445. // // Modals
  446. // // -------------------------
  447. // $modal-inner-padding: 20px;
  448. //
  449. // $modal-title-padding: 15px;
  450. // $modal-title-line-height: $line-height-base;
  451. //
  452. // $modal-content-bg: #fff;
  453. // $modal-content-border-color: rgba(0,0,0,.2);
  454. // $modal-content-fallback-border-color: #999;
  455. //
  456. // $modal-backdrop-bg: #000;
  457. // $modal-header-border-color: #e5e5e5;
  458. // $modal-footer-border-color: $modal-header-border-color;
  459. //
  460. //
  461. // // Alerts
  462. // // -------------------------
  463. // $alert-padding: 15px;
  464. // $alert-border-radius: $border-radius-base;
  465. // $alert-link-font-weight: bold;
  466. //
  467. // $alert-success-bg: $state-success-bg;
  468. // $alert-success-text: $state-success-text;
  469. // $alert-success-border: $state-success-border;
  470. //
  471. // $alert-info-bg: $state-info-bg;
  472. // $alert-info-text: $state-info-text;
  473. // $alert-info-border: $state-info-border;
  474. //
  475. // $alert-warning-bg: $state-warning-bg;
  476. // $alert-warning-text: $state-warning-text;
  477. // $alert-warning-border: $state-warning-border;
  478. //
  479. // $alert-danger-bg: $state-danger-bg;
  480. // $alert-danger-text: $state-danger-text;
  481. // $alert-danger-border: $state-danger-border;
  482. //
  483. //
  484. // // Progress bars
  485. // // -------------------------
  486. // $progress-bg: #f5f5f5;
  487. // $progress-bar-color: #fff;
  488. //
  489. // $progress-bar-bg: $brand-primary;
  490. // $progress-bar-success-bg: $brand-success;
  491. // $progress-bar-warning-bg: $brand-warning;
  492. // $progress-bar-danger-bg: $brand-danger;
  493. // $progress-bar-info-bg: $brand-info;
  494. //
  495. //
  496. // // List group
  497. // // -------------------------
  498. // $list-group-bg: #fff;
  499. // $list-group-border: #ddd;
  500. // $list-group-border-radius: $border-radius-base;
  501. //
  502. // $list-group-hover-bg: #f5f5f5;
  503. // $list-group-active-color: $component-active-color;
  504. // $list-group-active-bg: $component-active-bg;
  505. // $list-group-active-border: $list-group-active-bg;
  506. //
  507. // $list-group-link-color: #555;
  508. // $list-group-link-heading-color: #333;
  509. //
  510. //
  511. // // Panels
  512. // // -------------------------
  513. // $panel-bg: #fff;
  514. // $panel-inner-border: #ddd;
  515. // $panel-border-radius: $border-radius-base;
  516. // $panel-footer-bg: #f5f5f5;
  517. //
  518. // $panel-default-text: $gray-dark;
  519. // $panel-default-border: #ddd;
  520. // $panel-default-heading-bg: #f5f5f5;
  521. //
  522. // $panel-primary-text: #fff;
  523. // $panel-primary-border: $brand-primary;
  524. // $panel-primary-heading-bg: $brand-primary;
  525. //
  526. // $panel-success-text: $state-success-text;
  527. // $panel-success-border: $state-success-border;
  528. // $panel-success-heading-bg: $state-success-bg;
  529. //
  530. // $panel-warning-text: $state-warning-text;
  531. // $panel-warning-border: $state-warning-border;
  532. // $panel-warning-heading-bg: $state-warning-bg;
  533. //
  534. // $panel-danger-text: $state-danger-text;
  535. // $panel-danger-border: $state-danger-border;
  536. // $panel-danger-heading-bg: $state-danger-bg;
  537. //
  538. // $panel-info-text: $state-info-text;
  539. // $panel-info-border: $state-info-border;
  540. // $panel-info-heading-bg: $state-info-bg;
  541. //
  542. //
  543. // // Thumbnails
  544. // // -------------------------
  545. // $thumbnail-padding: 4px;
  546. // $thumbnail-bg: $body-bg;
  547. // $thumbnail-border: #ddd;
  548. // $thumbnail-border-radius: $border-radius-base;
  549. //
  550. // $thumbnail-caption-color: $text-color;
  551. // $thumbnail-caption-padding: 9px;
  552. //
  553. //
  554. // // Wells
  555. // // -------------------------
  556. // $well-bg: #f5f5f5;
  557. //
  558. //
  559. // // Badges
  560. // // -------------------------
  561. // $badge-color: #fff;
  562. // $badge-link-hover-color: #fff;
  563. // $badge-bg: $gray-light;
  564. //
  565. // $badge-active-color: $link-color;
  566. // $badge-active-bg: #fff;
  567. //
  568. // $badge-font-weight: bold;
  569. // $badge-line-height: 1;
  570. // $badge-border-radius: 10px;
  571. //
  572. //
  573. // // Breadcrumbs
  574. // // -------------------------
  575. // $breadcrumb-bg: #f5f5f5;
  576. // $breadcrumb-color: #ccc;
  577. // $breadcrumb-active-color: $gray-light;
  578. // $breadcrumb-separator: "/";
  579. //
  580. //
  581. // // Carousel
  582. // // ------------------------
  583. //
  584. // $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);
  585. //
  586. // $carousel-control-color: #fff;
  587. // $carousel-control-width: 15%;
  588. // $carousel-control-opacity: .5;
  589. // $carousel-control-font-size: 20px;
  590. //
  591. // $carousel-indicator-active-bg: #fff;
  592. // $carousel-indicator-border-color: #fff;
  593. //
  594. // $carousel-caption-color: #fff;
  595. //
  596. //
  597. // // Close
  598. // // ------------------------
  599. // $close-font-weight: bold;
  600. // $close-color: #000;
  601. // $close-text-shadow: 0 1px 0 #fff;
  602. //
  603. //
  604. // // Code
  605. // // ------------------------
  606. // $code-color: #c7254e;
  607. // $code-bg: #f9f2f4;
  608. //
  609. // $pre-bg: #f5f5f5;
  610. // $pre-color: $gray-dark;
  611. // $pre-border-color: #ccc;
  612. // $pre-scrollable-max-height: 340px;
  613. //
  614. // // Type
  615. // // ------------------------
  616. // $text-muted: $gray-light;
  617. // $abbr-border-color: $gray-light;
  618. // $headings-small-color: $gray-light;
  619. // $blockquote-small-color: $gray-light;
  620. // $blockquote-border-color: $gray-lighter;
  621. // $page-header-border-color: $gray-lighter;
  622. //
  623. // // Miscellaneous
  624. // // -------------------------
  625. //
  626. // // Hr border color
  627. // $hr-border: $gray-lighter;
  628. //
  629. // // Horizontal forms & lists
  630. // $component-offset-horizontal: 180px;
  631. //
  632. //
  633. // // Container sizes
  634. // // --------------------------------------------------
  635. //
  636. // // Small screen / tablet
  637. // $container-tablet: ((720px + $grid-gutter-width));
  638. // $container-sm: $container-tablet;
  639. //
  640. // // Medium screen / desktop
  641. // $container-desktop: ((940px + $grid-gutter-width));
  642. // $container-md: $container-desktop;
  643. //
  644. // // Large screen / wide desktop
  645. // $container-large-desktop: ((1140px + $grid-gutter-width));
  646. // $container-lg: $container-large-desktop;
  647. //
  648. // mixins
  649. //
  650. // Badget
  651. // @mixin badge-variant($color) {
  652. // background-color: $color;
  653. // &[href] {
  654. // &:hover,
  655. // &:focus {
  656. // background-color: darken($color, 10%);
  657. // }
  658. // }
  659. // }