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.

_base.less 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  1. @font-face {
  2. font-family: 'Lato';
  3. src: url('../vendor/assets/lato-fonts/lato-regular.eot');
  4. src: url('../vendor/assets/lato-fonts/lato-regular.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-regular.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-regular.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-regular.ttf') format('truetype');
  5. font-weight: 400;
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: 'Lato';
  10. src: url('../vendor/assets/lato-fonts/lato-italic.eot');
  11. src: url('../vendor/assets/lato-fonts/lato-italic.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-italic.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-italic.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-italic.ttf') format('truetype');
  12. font-weight: 400;
  13. font-style: italic;
  14. }
  15. @font-face {
  16. font-family: 'Lato';
  17. src: url('../vendor/assets/lato-fonts/lato-bold.eot');
  18. src: url('../vendor/assets/lato-fonts/lato-bold.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-bold.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-bold.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-bold.ttf') format('truetype');
  19. font-weight: 700;
  20. font-style: normal;
  21. }
  22. @font-face {
  23. font-family: 'Lato';
  24. src: url('../vendor/assets/lato-fonts/lato-bolditalic.eot');
  25. src: url('../vendor/assets/lato-fonts/lato-bolditalic.eot?#iefix') format('embedded-opentype'), url('../vendor/assets/lato-fonts/lato-bolditalic.woff2') format('woff2'), url('../vendor/assets/lato-fonts/lato-bolditalic.woff') format('woff'), url('../vendor/assets/lato-fonts/lato-bolditalic.ttf') format('truetype');
  26. font-weight: 700;
  27. font-style: italic;
  28. }
  29. @font-face {
  30. font-family: 'Yu Gothic';
  31. src: local('Yu Gothic Medium');
  32. font-weight: 400;
  33. }
  34. @font-face {
  35. font-family: 'Yu Gothic';
  36. src: local('Yu Gothic Bold');
  37. font-weight: 700;
  38. }
  39. @default-fonts: -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, Helvetica, Arial;
  40. @monospaced-fonts: 'SF Mono', Consolas, Menlo, 'Liberation Mono', Monaco, 'Lucida Console';
  41. .override-fonts(@fonts) {
  42. textarea {
  43. font-family: @fonts, sans-serif;
  44. }
  45. .markdown:not(code) {
  46. font-family: @fonts, sans-serif;
  47. }
  48. /* We're going to just override the semantic fonts here */
  49. h1,
  50. h2,
  51. h3,
  52. h4,
  53. h5 {
  54. font-family: Lato, @fonts, sans-serif;
  55. }
  56. .home .hero h1,
  57. .home .hero h2 {
  58. font-family: 'PT Sans Narrow', Lato, @fonts, sans-serif;
  59. }
  60. .ui.accordion .title:not(.ui),
  61. .ui.button,
  62. .ui.card > .content > .header.ui.card > .content > .header,
  63. .ui.category.search > .results .category > .name,
  64. .ui.form input:not([type]),
  65. .ui.form input[type="date"],
  66. .ui.form input[type="datetime-local"],
  67. .ui.form input[type="email"],
  68. .ui.form input[type="file"],
  69. .ui.form input[type="number"],
  70. .ui.form input[type="password"],
  71. .ui.form input[type="search"],
  72. .ui.form input[type="tel"],
  73. .ui.form input[type="text"],
  74. .ui.form input[type="time"],
  75. .ui.form input[type="url"],
  76. .ui.header,
  77. .ui.items > .item > .content > .header,
  78. .ui.list .list > .item .header,
  79. .ui.list > .item .header,
  80. .ui.menu,
  81. .ui.message .header,
  82. .ui.modal > .header,
  83. .ui.popup > .header,
  84. .ui.search > .results .result .title,
  85. .ui.search > .results > .message .header,
  86. body,
  87. .ui.input > input,
  88. .ui.input input,
  89. .ui.statistics .statistic > .value,
  90. .ui.statistic > .value,
  91. .ui.statistics .statistic > .label,
  92. .ui.statistic > .label,
  93. .ui.steps .step .title,
  94. .ui.text.container,
  95. .ui.language > .menu > .item& {
  96. font-family: Lato, @fonts, sans-serif;
  97. }
  98. }
  99. .override-fonts(@default-fonts);
  100. body {
  101. background-color: #ffffff;
  102. overflow-y: auto;
  103. -webkit-font-smoothing: antialiased;
  104. display: flex;
  105. flex-direction: column;
  106. }
  107. @ja-fonts: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Source Han Sans JP', 'Noto Sans CJK JP', 'Droid Sans Japanese', 'Meiryo', 'MS PGothic';
  108. :lang(ja) {
  109. .override-fonts(@default-fonts, @ja-fonts;);
  110. }
  111. @zh-CN-fonts: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans CN', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', 'Heiti SC', SimHei;
  112. :lang(zh-CN) {
  113. .override-fonts(@default-fonts, @zh-CN-fonts;);
  114. }
  115. @zh-TW-fonts: 'PingFang TC', 'Hiragino Sans TC', 'Source Han Sans TW', 'Source Han Sans TC', 'Noto Sans CJK TC', 'Microsoft JhengHei', 'Heiti TC', PMingLiU;
  116. :lang(zh-TW) {
  117. .override-fonts(@default-fonts, @zh-TW-fonts;);
  118. }
  119. @zh-HK-fonts: 'PingFang HK', 'Hiragino Sans TC', 'Source Han Sans HK', 'Source Han Sans TC', 'Noto Sans CJK TC', 'Microsoft JhengHei', 'Heiti TC', PMingLiU_HKSCS, PMingLiU;
  120. :lang(zh-HK) {
  121. .override-fonts(@default-fonts, @zh-HK-fonts;);
  122. }
  123. @ko-fonts: 'Apple SD Gothic Neo', 'NanumBarunGothic', 'Malgun Gothic', 'Gulim', 'Dotum', 'Nanum Gothic', 'Source Han Sans KR', 'Noto Sans CJK KR';
  124. :lang(ko) {
  125. .override-fonts(@default-fonts, @ko-fonts;);
  126. }
  127. img {
  128. border-radius: 3px;
  129. }
  130. table {
  131. border-collapse: collapse;
  132. }
  133. a {
  134. cursor: pointer;
  135. }
  136. .rounded {
  137. border-radius: 0.28571429rem !important;
  138. }
  139. .wrap {
  140. word-wrap: break-word;
  141. word-break: break-all;
  142. }
  143. pre,
  144. code,
  145. .mono {
  146. font: 12px @monospaced-fonts, monospace;
  147. &.raw {
  148. padding: 7px 12px;
  149. margin: 10px 0;
  150. background-color: #f8f8f8;
  151. border: 1px solid #dddddd;
  152. border-radius: 3px;
  153. font-size: 13px;
  154. line-height: 1.5;
  155. overflow: auto;
  156. }
  157. &.wrap {
  158. white-space: pre-wrap;
  159. word-break: break-all;
  160. overflow-wrap: break-word;
  161. word-wrap: break-word;
  162. }
  163. }
  164. .dont-break-out {
  165. overflow-wrap: break-word;
  166. word-wrap: break-word;
  167. word-break: break-all;
  168. hyphens: auto;
  169. }
  170. .full.height {
  171. flex-grow: 1;
  172. padding-bottom: 80px;
  173. }
  174. .following.bar {
  175. z-index: 900;
  176. left: 0;
  177. margin: 0 !important;
  178. &.light {
  179. background-color: white;
  180. border-bottom: 1px solid #dddddd;
  181. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  182. }
  183. .column .menu {
  184. margin-top: 0;
  185. }
  186. .top.menu a.item.brand {
  187. padding-left: 0;
  188. }
  189. .brand .ui.mini.image {
  190. width: 30px;
  191. }
  192. .top.menu a.item:hover,
  193. .top.menu .dropdown.item:hover,
  194. .top.menu .dropdown.item.active {
  195. background-color: transparent;
  196. }
  197. .top.menu a.item:hover {
  198. color: rgba(0, 0, 0, 0.45);
  199. }
  200. .top.menu .menu {
  201. z-index: 900;
  202. }
  203. .octicon {
  204. &.fitted {
  205. margin-right: 0;
  206. }
  207. margin-right: 0.75em;
  208. }
  209. .searchbox {
  210. background-color: #f4f4f4 !important;
  211. &:focus {
  212. background-color: #e9e9e9 !important;
  213. }
  214. }
  215. .text .octicon {
  216. width: 16px;
  217. text-align: center;
  218. }
  219. #navbar {
  220. width: 100vw;
  221. min-height: 52px;
  222. padding: 0 0.5rem;
  223. }
  224. #navbar .brand {
  225. margin: 0;
  226. }
  227. @media only screen and (max-width: 767px) {
  228. #navbar:not(.shown) > *:not(:first-child) {
  229. display: none;
  230. }
  231. }
  232. }
  233. .right.stackable.menu {
  234. // responsive fix: this makes sure that the right menu when the page
  235. // is on mobile view will have elements stacked on top of each other.
  236. // no, stackable won't work on right menus.
  237. margin-left: auto;
  238. display: flex;
  239. align-items: inherit;
  240. flex-direction: inherit;
  241. }
  242. .ui {
  243. &.left {
  244. float: left;
  245. }
  246. &.right {
  247. float: right;
  248. }
  249. &.button,
  250. &.menu .item {
  251. user-select: auto;
  252. }
  253. &.container {
  254. &.fluid {
  255. &.padded {
  256. padding: 0 10px 0 10px;
  257. }
  258. }
  259. }
  260. &.form {
  261. .ui.button {
  262. font-weight: normal;
  263. }
  264. }
  265. &.floating.label {
  266. z-index: 10;
  267. }
  268. &.transparent.label {
  269. background-color: transparent;
  270. }
  271. &.menu,
  272. &.vertical.menu,
  273. &.segment {
  274. box-shadow: none;
  275. }
  276. /* Overide semantic selector '.ui.menu:not(.vertical) .item > .button' */
  277. /* This fixes the commit graph button on the commits page */
  278. .menu:not(.vertical) .item > .button.compact {
  279. padding: 0.58928571em 1.125em;
  280. }
  281. .menu:not(.vertical) .item > .button.small {
  282. font-size: 0.92857143rem;
  283. }
  284. &.menu .ui.dropdown.item .menu .item {
  285. margin-right: auto;
  286. }
  287. &.dropdown .menu > .item > .floating.label {
  288. z-index: 11;
  289. }
  290. &.dropdown .menu .menu > .item > .floating.label {
  291. z-index: 21;
  292. }
  293. .text {
  294. &.red {
  295. color: #d95c5c !important;
  296. a {
  297. color: #d95c5c !important;
  298. &:hover {
  299. color: #e67777 !important;
  300. }
  301. }
  302. }
  303. &.blue {
  304. color: #428bca !important;
  305. a {
  306. color: #1155cc !important;
  307. &:hover {
  308. color: #428bca !important;
  309. }
  310. }
  311. }
  312. &.black {
  313. color: #444444;
  314. &:hover {
  315. color: #000000;
  316. }
  317. }
  318. &.grey {
  319. color: #767676 !important;
  320. a {
  321. color: #444444 !important;
  322. &:hover {
  323. color: #000000 !important;
  324. }
  325. }
  326. }
  327. &.light.grey {
  328. color: #888888 !important;
  329. }
  330. &.green {
  331. color: #6cc644 !important;
  332. }
  333. &.purple {
  334. color: #6e5494 !important;
  335. }
  336. &.yellow {
  337. color: #fbbd08 !important;
  338. }
  339. &.gold {
  340. color: #a1882b !important;
  341. }
  342. &.left {
  343. text-align: left !important;
  344. }
  345. &.right {
  346. text-align: right !important;
  347. }
  348. &.small {
  349. font-size: 0.75em;
  350. }
  351. &.normal {
  352. font-weight: normal;
  353. }
  354. &.bold {
  355. font-weight: bold;
  356. }
  357. &.italic {
  358. font-style: italic;
  359. }
  360. &.truncate {
  361. overflow: hidden;
  362. text-overflow: ellipsis;
  363. white-space: nowrap;
  364. display: inline-block;
  365. }
  366. &.thin {
  367. font-weight: normal;
  368. }
  369. &.middle {
  370. vertical-align: middle;
  371. }
  372. }
  373. .message {
  374. text-align: center;
  375. }
  376. &.bottom.attached.message {
  377. font-weight: bold;
  378. text-align: left;
  379. color: black;
  380. .pull-right {
  381. color: black;
  382. }
  383. & > span,
  384. .pull-right > span {
  385. color: #21ba45;
  386. }
  387. }
  388. .header > i + .content {
  389. padding-left: 0.75rem;
  390. vertical-align: middle;
  391. }
  392. .warning {
  393. &.header {
  394. background-color: #f9edbe !important;
  395. border-color: #efc16b;
  396. }
  397. &.segment {
  398. border-color: #efc16b;
  399. }
  400. }
  401. .info {
  402. &.segment {
  403. border: 1px solid #c5d5dd;
  404. &.top {
  405. background-color: #e6f1f6 !important;
  406. h3,
  407. h4 {
  408. margin-top: 0;
  409. }
  410. h3:last-child {
  411. margin-top: 4px;
  412. }
  413. > :last-child {
  414. margin-bottom: 0;
  415. }
  416. }
  417. }
  418. }
  419. .normal.header {
  420. font-weight: normal;
  421. }
  422. .avatar.image {
  423. border-radius: 3px;
  424. }
  425. .form {
  426. .fake {
  427. display: none !important;
  428. }
  429. .sub.field {
  430. margin-left: 25px;
  431. }
  432. }
  433. .sha.label {
  434. font-family: @monospaced-fonts, monospace;
  435. font-size: 13px;
  436. padding: 6px 10px 4px 10px;
  437. font-weight: normal;
  438. margin: 0 6px;
  439. }
  440. &.status.buttons {
  441. .octicon {
  442. margin-right: 4px;
  443. }
  444. }
  445. &.inline.delete-button {
  446. padding: 8px 15px;
  447. font-weight: normal;
  448. }
  449. .background {
  450. &.red {
  451. background-color: #d95c5c !important;
  452. }
  453. &.blue {
  454. background-color: #428bca !important;
  455. }
  456. &.black {
  457. background-color: #444444;
  458. }
  459. &.grey {
  460. background-color: #767676 !important;
  461. }
  462. &.light.grey {
  463. background-color: #888888 !important;
  464. }
  465. &.green {
  466. background-color: #6cc644 !important;
  467. }
  468. &.purple {
  469. background-color: #6e5494 !important;
  470. }
  471. &.yellow {
  472. background-color: #fbbf09 !important;
  473. }
  474. &.gold {
  475. background-color: #a1882b !important;
  476. }
  477. }
  478. .branch-tag-choice {
  479. line-height: 20px;
  480. }
  481. &.pagination.menu {
  482. @media only screen and (max-width: 767px) {
  483. .item:not(.active):not(.navigation),
  484. .item.navigation span.navigation_label {
  485. display: none;
  486. }
  487. }
  488. }
  489. }
  490. .file-comment {
  491. font: 12px @monospaced-fonts, monospace;
  492. color: rgba(0, 0, 0, 0.87);
  493. }
  494. .ui.floating.dropdown {
  495. .overflow.menu {
  496. .scrolling.menu.items {
  497. border-radius: 0 !important;
  498. box-shadow: none !important;
  499. border-bottom: 1px solid rgba(34, 36, 38, 0.15);
  500. }
  501. }
  502. }
  503. .user-menu > .item {
  504. width: 100%;
  505. border-radius: 0 !important;
  506. }
  507. .scrolling.menu {
  508. .item.selected {
  509. font-weight: 700 !important;
  510. }
  511. }
  512. footer {
  513. background-color: white;
  514. border-top: 1px solid #d6d6d6;
  515. width: 100%;
  516. flex-basis: 40px;
  517. color: #888888;
  518. .container {
  519. width: 100vw !important;
  520. padding: 0 0.5rem;
  521. .fa {
  522. width: 16px;
  523. text-align: center;
  524. color: #428bca;
  525. }
  526. .links > * {
  527. border-left: 1px solid #d6d6d6;
  528. padding-left: 8px;
  529. margin-left: 5px;
  530. &:first-child {
  531. border-left: 0;
  532. }
  533. }
  534. }
  535. .ui.language .menu {
  536. max-height: 500px;
  537. overflow-y: auto;
  538. margin-bottom: 7px;
  539. }
  540. .ui {
  541. &.left,
  542. &.right {
  543. line-height: 40px;
  544. }
  545. }
  546. }
  547. .hide {
  548. display: none;
  549. &.show-outdated {
  550. display: none !important;
  551. }
  552. &.hide-outdated {
  553. display: none !important;
  554. }
  555. }
  556. .center {
  557. text-align: center;
  558. }
  559. .generate-img(16);
  560. .generate-img(@n, @i: 1) when (@i =< @n) {
  561. .img-@{i} {
  562. width: (2px * @i) !important;
  563. height: (2px * @i) !important;
  564. }
  565. .generate-img(@n, (@i + 1));
  566. }
  567. // Conditional display
  568. @media only screen and (min-width: 768px) {
  569. .mobile-only,
  570. .ui.button.mobile-only {
  571. display: none;
  572. }
  573. // has the same behaviour of sr-only, hiding the content for
  574. // non-screenreaders, but is shown on mobile devices.
  575. .sr-mobile-only {
  576. .sr-only();
  577. }
  578. }
  579. @media only screen and (max-width: 767px) {
  580. .not-mobile {
  581. display: none;
  582. }
  583. }
  584. // Accessibility
  585. .sr-only {
  586. position: absolute;
  587. width: 1px;
  588. height: 1px;
  589. padding: 0;
  590. margin: -1px;
  591. overflow: hidden;
  592. clip: rect(0, 0, 0, 0);
  593. border: 0;
  594. }
  595. .sr-only-focusable:active,
  596. .sr-only-focusable:focus {
  597. position: static;
  598. width: auto;
  599. height: auto;
  600. margin: 0;
  601. overflow: visible;
  602. clip: auto;
  603. }
  604. @media only screen and (max-width: 991px) and (min-width: 768px) {
  605. .ui.container {
  606. width: 95%;
  607. }
  608. }
  609. /* Overrides some styles of the Highlight.js plugin */
  610. .hljs {
  611. background: inherit !important;
  612. padding: 0 !important;
  613. }
  614. .ui.menu.new-menu {
  615. justify-content: center !important;
  616. padding-top: 15px !important;
  617. margin-top: -15px !important;
  618. margin-bottom: 15px !important;
  619. background-color: #fafafa !important;
  620. border-width: 1px !important;
  621. }
  622. @media only screen and (max-width: 1200px) {
  623. .ui.menu.new-menu {
  624. overflow-x: auto !important;
  625. justify-content: left !important;
  626. padding-bottom: 5px;
  627. }
  628. .ui.menu.new-menu::-webkit-scrollbar {
  629. height: 8px;
  630. display: none;
  631. }
  632. .ui.menu.new-menu:hover::-webkit-scrollbar {
  633. display: block;
  634. }
  635. .ui.menu.new-menu::-webkit-scrollbar-track {
  636. background: rgba(0, 0, 0, 0.01);
  637. }
  638. .ui.menu.new-menu::-webkit-scrollbar-thumb {
  639. background: rgba(0, 0, 0, 0.2);
  640. }
  641. .ui.menu.new-menu:after {
  642. position: absolute;
  643. margin-top: -15px;
  644. display: block;
  645. background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 100%);
  646. content: ' ';
  647. right: 0;
  648. height: 53px;
  649. z-index: 1000;
  650. width: 60px;
  651. clear: none;
  652. visibility: visible;
  653. }
  654. .ui.menu.new-menu a.item:last-child {
  655. padding-right: 30px !important;
  656. }
  657. }
  658. [v-cloak] {
  659. display: none !important;
  660. }
  661. .repos-search {
  662. padding-bottom: 0 !important;
  663. }
  664. .repos-filter {
  665. margin-top: 0 !important;
  666. border-bottom-width: 0 !important;
  667. margin-bottom: 2px !important;
  668. }
  669. #user-heatmap {
  670. width: 107%; // Fixes newest contributions not showing
  671. text-align: center;
  672. svg:not(:root) {
  673. overflow: inherit;
  674. padding: 0 !important;
  675. }
  676. @media only screen and (max-width: 1200px) {
  677. & {
  678. display: none;
  679. }
  680. }
  681. }
  682. .heatmap-color-0 {
  683. background-color: #f4f4f4;
  684. }
  685. .heatmap-color-1 {
  686. background-color: #d7e5db;
  687. }
  688. .heatmap-color-2 {
  689. background-color: #adc7ab;
  690. }
  691. .heatmap-color-3 {
  692. background-color: #83a87b;
  693. }
  694. .heatmap-color-4 {
  695. background-color: #598a4b;
  696. }
  697. .heatmap-color-5 {
  698. background-color: #2f6b1b;
  699. }
  700. .archived-icon {
  701. color: lighten(#000000, 70%) !important;
  702. }
  703. .oauth2-authorize-application-box {
  704. margin-top: 3em !important;
  705. }
  706. /* Tab color tweaks */
  707. .ui.tabular.menu .item {
  708. color: rgba(0, 0, 0, 0.5);
  709. }
  710. .ui.tabular.menu .item:hover {
  711. color: rgba(0, 0, 0, 0.8);
  712. }
  713. .ui.tabular.menu .item.active {
  714. color: rgba(0, 0, 0, 0.9);
  715. }
  716. /* multiple radio or checkboxes as inline element */
  717. .inline-grouped-list {
  718. display: inline-block;
  719. vertical-align: top;
  720. > .ui {
  721. display: block;
  722. margin-top: 5px;
  723. margin-bottom: 10px;
  724. &:first-child {
  725. margin-top: 1px;
  726. }
  727. }
  728. }