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.

800 lines
16 KiB

9 years ago
8 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 2.2.0 - Segment
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2015 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Segment
  13. *******************************/
  14. .ui.segment {
  15. position: relative;
  16. background: #FFFFFF;
  17. box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
  18. margin: 1rem 0em;
  19. padding: 1em 1em;
  20. border-radius: 0.28571429rem;
  21. border: 1px solid rgba(34, 36, 38, 0.15);
  22. }
  23. .ui.segment:first-child {
  24. margin-top: 0em;
  25. }
  26. .ui.segment:last-child {
  27. margin-bottom: 0em;
  28. }
  29. /* Vertical */
  30. .ui.vertical.segment {
  31. margin: 0em;
  32. padding-left: 0em;
  33. padding-right: 0em;
  34. background: none transparent;
  35. border-radius: 0px;
  36. box-shadow: none;
  37. border: none;
  38. border-bottom: 1px solid rgba(34, 36, 38, 0.15);
  39. }
  40. .ui.vertical.segment:last-child {
  41. border-bottom: none;
  42. }
  43. /*-------------------
  44. Loose Coupling
  45. --------------------*/
  46. /* Header */
  47. .ui.inverted.segment > .ui.header {
  48. color: #FFFFFF;
  49. }
  50. /* Label */
  51. .ui[class*="bottom attached"].segment > [class*="top attached"].label {
  52. border-top-left-radius: 0em;
  53. border-top-right-radius: 0em;
  54. }
  55. .ui[class*="top attached"].segment > [class*="bottom attached"].label {
  56. border-bottom-left-radius: 0em;
  57. border-bottom-right-radius: 0em;
  58. }
  59. .ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label {
  60. border-top-left-radius: 0em;
  61. border-top-right-radius: 0em;
  62. }
  63. .ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label {
  64. border-bottom-left-radius: 0em;
  65. border-bottom-right-radius: 0em;
  66. }
  67. /* Grid */
  68. .ui.page.grid.segment,
  69. .ui.grid > .row > .ui.segment.column,
  70. .ui.grid > .ui.segment.column {
  71. padding-top: 2em;
  72. padding-bottom: 2em;
  73. }
  74. .ui.grid.segment {
  75. margin: 1rem 0em;
  76. border-radius: 0.28571429rem;
  77. }
  78. /* Table */
  79. .ui.basic.table.segment {
  80. background: #FFFFFF;
  81. border: 1px solid rgba(34, 36, 38, 0.15);
  82. box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
  83. }
  84. .ui[class*="very basic"].table.segment {
  85. padding: 1em 1em;
  86. }
  87. /*******************************
  88. Types
  89. *******************************/
  90. /*-------------------
  91. Piled
  92. --------------------*/
  93. .ui.piled.segments,
  94. .ui.piled.segment {
  95. margin: 3em 0em;
  96. box-shadow: '';
  97. z-index: auto;
  98. }
  99. .ui.piled.segment:first-child {
  100. margin-top: 0em;
  101. }
  102. .ui.piled.segment:last-child {
  103. margin-bottom: 0em;
  104. }
  105. .ui.piled.segments:after,
  106. .ui.piled.segments:before,
  107. .ui.piled.segment:after,
  108. .ui.piled.segment:before {
  109. background-color: #FFFFFF;
  110. visibility: visible;
  111. content: '';
  112. display: block;
  113. height: 100%;
  114. left: 0px;
  115. position: absolute;
  116. width: 100%;
  117. border: 1px solid rgba(34, 36, 38, 0.15);
  118. box-shadow: '';
  119. }
  120. .ui.piled.segments:before,
  121. .ui.piled.segment:before {
  122. -webkit-transform: rotate(-1.2deg);
  123. -ms-transform: rotate(-1.2deg);
  124. transform: rotate(-1.2deg);
  125. top: 0;
  126. z-index: -2;
  127. }
  128. .ui.piled.segments:after,
  129. .ui.piled.segment:after {
  130. -webkit-transform: rotate(1.2deg);
  131. -ms-transform: rotate(1.2deg);
  132. transform: rotate(1.2deg);
  133. top: 0;
  134. z-index: -1;
  135. }
  136. /* Piled Attached */
  137. .ui[class*="top attached"].piled.segment {
  138. margin-top: 3em;
  139. margin-bottom: 0em;
  140. }
  141. .ui.piled.segment[class*="top attached"]:first-child {
  142. margin-top: 0em;
  143. }
  144. .ui.piled.segment[class*="bottom attached"] {
  145. margin-top: 0em;
  146. margin-bottom: 3em;
  147. }
  148. .ui.piled.segment[class*="bottom attached"]:last-child {
  149. margin-bottom: 0em;
  150. }
  151. /*-------------------
  152. Stacked
  153. --------------------*/
  154. .ui.stacked.segment {
  155. padding-bottom: 1.4em;
  156. }
  157. .ui.stacked.segments:before,
  158. .ui.stacked.segments:after,
  159. .ui.stacked.segment:before,
  160. .ui.stacked.segment:after {
  161. content: '';
  162. position: absolute;
  163. bottom: -3px;
  164. left: 0%;
  165. border-top: 1px solid rgba(34, 36, 38, 0.15);
  166. background: rgba(0, 0, 0, 0.03);
  167. width: 100%;
  168. height: 6px;
  169. visibility: visible;
  170. }
  171. .ui.stacked.segments:before,
  172. .ui.stacked.segment:before {
  173. display: none;
  174. }
  175. /* Add additional page */
  176. .ui.tall.stacked.segments:before,
  177. .ui.tall.stacked.segment:before {
  178. display: block;
  179. bottom: 0px;
  180. }
  181. /* Inverted */
  182. .ui.stacked.inverted.segments:before,
  183. .ui.stacked.inverted.segments:after,
  184. .ui.stacked.inverted.segment:before,
  185. .ui.stacked.inverted.segment:after {
  186. background-color: rgba(0, 0, 0, 0.03);
  187. border-top: 1px solid rgba(34, 36, 38, 0.35);
  188. }
  189. /*-------------------
  190. Padded
  191. --------------------*/
  192. .ui.padded.segment {
  193. padding: 1.5em;
  194. }
  195. .ui[class*="very padded"].segment {
  196. padding: 3em;
  197. }
  198. /*-------------------
  199. Compact
  200. --------------------*/
  201. .ui.compact.segment {
  202. display: table;
  203. }
  204. /* Compact Group */
  205. .ui.compact.segments {
  206. display: -webkit-inline-box;
  207. display: -webkit-inline-flex;
  208. display: -ms-inline-flexbox;
  209. display: inline-flex;
  210. }
  211. .ui.compact.segments .segment,
  212. .ui.segments .compact.segment {
  213. display: block;
  214. -webkit-box-flex: 0;
  215. -webkit-flex: 0 1 auto;
  216. -ms-flex: 0 1 auto;
  217. flex: 0 1 auto;
  218. }
  219. /*-------------------
  220. Circular
  221. --------------------*/
  222. .ui.circular.segment {
  223. display: table-cell;
  224. padding: 2em;
  225. text-align: center;
  226. vertical-align: middle;
  227. border-radius: 500em;
  228. }
  229. /*-------------------
  230. Raised
  231. --------------------*/
  232. .ui.raised.segments,
  233. .ui.raised.segment {
  234. box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
  235. }
  236. /*******************************
  237. Groups
  238. *******************************/
  239. /* Group */
  240. .ui.segments {
  241. -webkit-box-orient: vertical;
  242. -webkit-box-direction: normal;
  243. -webkit-flex-direction: column;
  244. -ms-flex-direction: column;
  245. flex-direction: column;
  246. position: relative;
  247. margin: 1rem 0em;
  248. border: 1px solid rgba(34, 36, 38, 0.15);
  249. box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
  250. border-radius: 0.28571429rem;
  251. }
  252. .ui.segments:first-child {
  253. margin-top: 0em;
  254. }
  255. .ui.segments:last-child {
  256. margin-bottom: 0em;
  257. }
  258. /* Nested Segment */
  259. .ui.segments > .segment {
  260. top: 0px;
  261. bottom: 0px;
  262. border-radius: 0px;
  263. margin: 0em;
  264. width: auto;
  265. box-shadow: none;
  266. border: none;
  267. border-top: 1px solid rgba(34, 36, 38, 0.15);
  268. }
  269. .ui.segments:not(.horizontal) > .segment:first-child {
  270. border-top: none;
  271. margin-top: 0em;
  272. bottom: 0px;
  273. margin-bottom: 0em;
  274. top: 0px;
  275. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  276. }
  277. /* Bottom */
  278. .ui.segments:not(.horizontal) > .segment:last-child {
  279. top: 0px;
  280. bottom: 0px;
  281. margin-top: 0em;
  282. margin-bottom: 0em;
  283. box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
  284. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  285. }
  286. /* Only */
  287. .ui.segments:not(.horizontal) > .segment:only-child {
  288. border-radius: 0.28571429rem;
  289. }
  290. /* Nested Group */
  291. .ui.segments > .ui.segments {
  292. border-top: 1px solid rgba(34, 36, 38, 0.15);
  293. margin: 1rem 1rem;
  294. }
  295. .ui.segments > .segments:first-child {
  296. border-top: none;
  297. }
  298. .ui.segments > .segment + .segments:not(.horizontal) {
  299. margin-top: 0em;
  300. }
  301. /* Horizontal Group */
  302. .ui.horizontal.segments {
  303. display: -webkit-box;
  304. display: -webkit-flex;
  305. display: -ms-flexbox;
  306. display: flex;
  307. -webkit-box-orient: horizontal;
  308. -webkit-box-direction: normal;
  309. -webkit-flex-direction: row;
  310. -ms-flex-direction: row;
  311. flex-direction: row;
  312. background-color: transparent;
  313. border-radius: 0px;
  314. padding: 0em;
  315. background-color: #FFFFFF;
  316. box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
  317. margin: 1rem 0em;
  318. border-radius: 0.28571429rem;
  319. border: 1px solid rgba(34, 36, 38, 0.15);
  320. }
  321. /* Nested Horizontal Group */
  322. .ui.segments > .horizontal.segments {
  323. margin: 0em;
  324. background-color: transparent;
  325. border-radius: 0px;
  326. border: none;
  327. box-shadow: none;
  328. border-top: 1px solid rgba(34, 36, 38, 0.15);
  329. }
  330. /* Horizontal Segment */
  331. .ui.horizontal.segments > .segment {
  332. -webkit-box-flex: 1;
  333. -webkit-flex: 1 1 auto;
  334. flex: 1 1 auto;
  335. -ms-flex: 1 1 0px;
  336. /* Solves #2550 MS Flex */
  337. margin: 0em;
  338. min-width: 0px;
  339. background-color: transparent;
  340. border-radius: 0px;
  341. border: none;
  342. box-shadow: none;
  343. border-left: 1px solid rgba(34, 36, 38, 0.15);
  344. }
  345. /* Border Fixes */
  346. .ui.segments > .horizontal.segments:first-child {
  347. border-top: none;
  348. }
  349. .ui.horizontal.segments > .segment:first-child {
  350. border-left: none;
  351. }
  352. /*******************************
  353. States
  354. *******************************/
  355. /*--------------
  356. Disabled
  357. ---------------*/
  358. .ui.disabled.segment {
  359. opacity: 0.45;
  360. color: rgba(40, 40, 40, 0.3);
  361. }
  362. /*--------------
  363. Loading
  364. ---------------*/
  365. .ui.loading.segment {
  366. position: relative;
  367. cursor: default;
  368. point-events: none;
  369. text-shadow: none !important;
  370. color: transparent !important;
  371. -webkit-transition: all 0s linear;
  372. transition: all 0s linear;
  373. }
  374. .ui.loading.segment:before {
  375. position: absolute;
  376. content: '';
  377. top: 0%;
  378. left: 0%;
  379. background: rgba(255, 255, 255, 0.8);
  380. width: 100%;
  381. height: 100%;
  382. border-radius: 0.28571429rem;
  383. z-index: 100;
  384. }
  385. .ui.loading.segment:after {
  386. position: absolute;
  387. content: '';
  388. top: 50%;
  389. left: 50%;
  390. margin: -1.5em 0em 0em -1.5em;
  391. width: 3em;
  392. height: 3em;
  393. -webkit-animation: segment-spin 0.6s linear;
  394. animation: segment-spin 0.6s linear;
  395. -webkit-animation-iteration-count: infinite;
  396. animation-iteration-count: infinite;
  397. border-radius: 500rem;
  398. border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  399. border-style: solid;
  400. border-width: 0.2em;
  401. box-shadow: 0px 0px 0px 1px transparent;
  402. visibility: visible;
  403. z-index: 101;
  404. }
  405. @-webkit-keyframes segment-spin {
  406. from {
  407. -webkit-transform: rotate(0deg);
  408. transform: rotate(0deg);
  409. }
  410. to {
  411. -webkit-transform: rotate(360deg);
  412. transform: rotate(360deg);
  413. }
  414. }
  415. @keyframes segment-spin {
  416. from {
  417. -webkit-transform: rotate(0deg);
  418. transform: rotate(0deg);
  419. }
  420. to {
  421. -webkit-transform: rotate(360deg);
  422. transform: rotate(360deg);
  423. }
  424. }
  425. /*******************************
  426. Variations
  427. *******************************/
  428. /*-------------------
  429. Basic
  430. --------------------*/
  431. .ui.basic.segment {
  432. background: none transparent;
  433. box-shadow: none;
  434. border: none;
  435. border-radius: 0px;
  436. }
  437. /*-------------------
  438. Clearing
  439. --------------------*/
  440. .ui.clearing.segment:after {
  441. content: ".";
  442. display: block;
  443. height: 0;
  444. clear: both;
  445. visibility: hidden;
  446. }
  447. /*-------------------
  448. Colors
  449. --------------------*/
  450. /* Red */
  451. .ui.red.segment:not(.inverted) {
  452. border-top: 2px solid #DB2828;
  453. }
  454. .ui.inverted.red.segment {
  455. background-color: #DB2828 !important;
  456. color: #FFFFFF !important;
  457. }
  458. /* Orange */
  459. .ui.orange.segment:not(.inverted) {
  460. border-top: 2px solid #F2711C;
  461. }
  462. .ui.inverted.orange.segment {
  463. background-color: #F2711C !important;
  464. color: #FFFFFF !important;
  465. }
  466. /* Yellow */
  467. .ui.yellow.segment:not(.inverted) {
  468. border-top: 2px solid #FBBD08;
  469. }
  470. .ui.inverted.yellow.segment {
  471. background-color: #FBBD08 !important;
  472. color: #FFFFFF !important;
  473. }
  474. /* Olive */
  475. .ui.olive.segment:not(.inverted) {
  476. border-top: 2px solid #B5CC18;
  477. }
  478. .ui.inverted.olive.segment {
  479. background-color: #B5CC18 !important;
  480. color: #FFFFFF !important;
  481. }
  482. /* Green */
  483. .ui.green.segment:not(.inverted) {
  484. border-top: 2px solid #21BA45;
  485. }
  486. .ui.inverted.green.segment {
  487. background-color: #21BA45 !important;
  488. color: #FFFFFF !important;
  489. }
  490. /* Teal */
  491. .ui.teal.segment:not(.inverted) {
  492. border-top: 2px solid #00B5AD;
  493. }
  494. .ui.inverted.teal.segment {
  495. background-color: #00B5AD !important;
  496. color: #FFFFFF !important;
  497. }
  498. /* Blue */
  499. .ui.blue.segment:not(.inverted) {
  500. border-top: 2px solid #2185D0;
  501. }
  502. .ui.inverted.blue.segment {
  503. background-color: #2185D0 !important;
  504. color: #FFFFFF !important;
  505. }
  506. /* Violet */
  507. .ui.violet.segment:not(.inverted) {
  508. border-top: 2px solid #6435C9;
  509. }
  510. .ui.inverted.violet.segment {
  511. background-color: #6435C9 !important;
  512. color: #FFFFFF !important;
  513. }
  514. /* Purple */
  515. .ui.purple.segment:not(.inverted) {
  516. border-top: 2px solid #A333C8;
  517. }
  518. .ui.inverted.purple.segment {
  519. background-color: #A333C8 !important;
  520. color: #FFFFFF !important;
  521. }
  522. /* Pink */
  523. .ui.pink.segment:not(.inverted) {
  524. border-top: 2px solid #E03997;
  525. }
  526. .ui.inverted.pink.segment {
  527. background-color: #E03997 !important;
  528. color: #FFFFFF !important;
  529. }
  530. /* Brown */
  531. .ui.brown.segment:not(.inverted) {
  532. border-top: 2px solid #A5673F;
  533. }
  534. .ui.inverted.brown.segment {
  535. background-color: #A5673F !important;
  536. color: #FFFFFF !important;
  537. }
  538. /* Grey */
  539. .ui.grey.segment:not(.inverted) {
  540. border-top: 2px solid #767676;
  541. }
  542. .ui.inverted.grey.segment {
  543. background-color: #767676 !important;
  544. color: #FFFFFF !important;
  545. }
  546. /* Black */
  547. .ui.black.segment:not(.inverted) {
  548. border-top: 2px solid #1B1C1D;
  549. }
  550. .ui.inverted.black.segment {
  551. background-color: #1B1C1D !important;
  552. color: #FFFFFF !important;
  553. }
  554. /*-------------------
  555. Aligned
  556. --------------------*/
  557. .ui[class*="left aligned"].segment {
  558. text-align: left;
  559. }
  560. .ui[class*="right aligned"].segment {
  561. text-align: right;
  562. }
  563. .ui[class*="center aligned"].segment {
  564. text-align: center;
  565. }
  566. /*-------------------
  567. Floated
  568. --------------------*/
  569. .ui.floated.segment,
  570. .ui[class*="left floated"].segment {
  571. float: left;
  572. margin-right: 1em;
  573. }
  574. .ui[class*="right floated"].segment {
  575. float: right;
  576. margin-left: 1em;
  577. }
  578. /*-------------------
  579. Inverted
  580. --------------------*/
  581. .ui.inverted.segment {
  582. border: none;
  583. box-shadow: none;
  584. }
  585. .ui.inverted.segment,
  586. .ui.primary.inverted.segment {
  587. background: #1B1C1D;
  588. color: rgba(255, 255, 255, 0.9);
  589. }
  590. /* Nested */
  591. .ui.inverted.segment .segment {
  592. color: rgba(0, 0, 0, 0.87);
  593. }
  594. .ui.inverted.segment .inverted.segment {
  595. color: rgba(255, 255, 255, 0.9);
  596. }
  597. /* Attached */
  598. .ui.inverted.attached.segment {
  599. border-color: #555555;
  600. }
  601. /*-------------------
  602. Emphasis
  603. --------------------*/
  604. /* Secondary */
  605. .ui.secondary.segment {
  606. background: #F3F4F5;
  607. color: rgba(0, 0, 0, 0.6);
  608. }
  609. .ui.secondary.inverted.segment {
  610. background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  611. background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  612. color: rgba(255, 255, 255, 0.8);
  613. }
  614. /* Tertiary */
  615. .ui.tertiary.segment {
  616. background: #DCDDDE;
  617. color: rgba(0, 0, 0, 0.6);
  618. }
  619. .ui.tertiary.inverted.segment {
  620. background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);
  621. background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);
  622. color: rgba(255, 255, 255, 0.8);
  623. }
  624. /*-------------------
  625. Attached
  626. --------------------*/
  627. /* Middle */
  628. .ui.attached.segment {
  629. top: 0px;
  630. bottom: 0px;
  631. border-radius: 0px;
  632. margin: 0em -1px;
  633. width: calc(100% + 2px );
  634. max-width: calc(100% + 2px );
  635. box-shadow: none;
  636. border: 1px solid #D4D4D5;
  637. }
  638. .ui.attached:not(.message) + .ui.attached.segment:not(.top) {
  639. border-top: none;
  640. }
  641. /* Top */
  642. .ui[class*="top attached"].segment {
  643. bottom: 0px;
  644. margin-bottom: 0em;
  645. top: 0px;
  646. margin-top: 1rem;
  647. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  648. }
  649. .ui.segment[class*="top attached"]:first-child {
  650. margin-top: 0em;
  651. }
  652. /* Bottom */
  653. .ui.segment[class*="bottom attached"] {
  654. bottom: 0px;
  655. margin-top: 0em;
  656. top: 0px;
  657. margin-bottom: 1rem;
  658. box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
  659. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  660. }
  661. .ui.segment[class*="bottom attached"]:last-child {
  662. margin-bottom: 0em;
  663. }
  664. /*-------------------
  665. Size
  666. --------------------*/
  667. .ui.mini.segments .segment,
  668. .ui.mini.segment {
  669. font-size: 0.78571429rem;
  670. }
  671. .ui.tiny.segments .segment,
  672. .ui.tiny.segment {
  673. font-size: 0.85714286rem;
  674. }
  675. .ui.small.segments .segment,
  676. .ui.small.segment {
  677. font-size: 0.92857143rem;
  678. }
  679. .ui.segments .segment,
  680. .ui.segment {
  681. font-size: 1rem;
  682. }
  683. .ui.large.segments .segment,
  684. .ui.large.segment {
  685. font-size: 1.14285714rem;
  686. }
  687. .ui.big.segments .segment,
  688. .ui.big.segment {
  689. font-size: 1.28571429rem;
  690. }
  691. .ui.huge.segments .segment,
  692. .ui.huge.segment {
  693. font-size: 1.42857143rem;
  694. }
  695. .ui.massive.segments .segment,
  696. .ui.massive.segment {
  697. font-size: 1.71428571rem;
  698. }
  699. /*******************************
  700. Theme Overrides
  701. *******************************/
  702. /*******************************
  703. Site Overrides
  704. *******************************/