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.

1880 lines
63 KiB

  1. /*!
  2. * # Semantic UI 2.0.0 - Grid
  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. Standard
  13. *******************************/
  14. .ui.grid {
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: -ms-flexbox;
  18. display: flex;
  19. -webkit-box-orient: horizontal;
  20. -webkit-box-direction: normal;
  21. -webkit-flex-direction: row;
  22. -ms-flex-direction: row;
  23. flex-direction: row;
  24. -webkit-flex-wrap: wrap;
  25. -ms-flex-wrap: wrap;
  26. flex-wrap: wrap;
  27. -webkit-box-align: stretch;
  28. -webkit-align-items: stretch;
  29. -ms-flex-align: stretch;
  30. align-items: stretch;
  31. padding: 0em;
  32. }
  33. /*----------------------
  34. Remove Gutters
  35. -----------------------*/
  36. .ui.grid {
  37. margin-top: -1rem;
  38. margin-bottom: -1rem;
  39. margin-left: -1rem;
  40. margin-right: -1rem;
  41. }
  42. .ui.relaxed.grid {
  43. margin-left: -1.5rem;
  44. margin-right: -1.5rem;
  45. }
  46. .ui[class*="very relaxed"].grid {
  47. margin-left: -2.5rem;
  48. margin-right: -2.5rem;
  49. }
  50. /* Preserve Rows Spacing on Consecutive Grids */
  51. .ui.grid + .grid {
  52. margin-top: 1rem;
  53. }
  54. /*-------------------
  55. Columns
  56. --------------------*/
  57. /* Standard 16 column */
  58. .ui.grid > .column:not(.row),
  59. .ui.grid > .row > .column {
  60. position: relative;
  61. display: inline-block;
  62. width: 6.25%;
  63. padding-left: 1rem;
  64. padding-right: 1rem;
  65. vertical-align: top;
  66. }
  67. .ui.grid > * {
  68. padding-left: 1rem;
  69. padding-right: 1rem;
  70. }
  71. /*-------------------
  72. Rows
  73. --------------------*/
  74. .ui.grid > .row {
  75. position: relative;
  76. display: -webkit-box;
  77. display: -webkit-flex;
  78. display: -ms-flexbox;
  79. display: flex;
  80. -webkit-box-orient: horizontal;
  81. -webkit-box-direction: normal;
  82. -webkit-flex-direction: row;
  83. -ms-flex-direction: row;
  84. flex-direction: row;
  85. -webkit-flex-wrap: wrap;
  86. -ms-flex-wrap: wrap;
  87. flex-wrap: wrap;
  88. -webkit-box-pack: inherit;
  89. -webkit-justify-content: inherit;
  90. -ms-flex-pack: inherit;
  91. justify-content: inherit;
  92. -webkit-box-align: stretch;
  93. -webkit-align-items: stretch;
  94. -ms-flex-align: stretch;
  95. align-items: stretch;
  96. width: 100% !important;
  97. padding: 0rem;
  98. padding-top: 1rem;
  99. padding-bottom: 1rem;
  100. }
  101. /*-------------------
  102. Columns
  103. --------------------*/
  104. /* Vertical padding when no rows */
  105. .ui.grid > .column:not(.row) {
  106. padding-top: 1rem;
  107. padding-bottom: 1rem;
  108. }
  109. .ui.grid > .row > .column {
  110. margin-top: 0em;
  111. margin-bottom: 0em;
  112. }
  113. /*-------------------
  114. Content
  115. --------------------*/
  116. .ui.grid > .row > img,
  117. .ui.grid > .row > .column > img {
  118. max-width: 100%;
  119. }
  120. /*-------------------
  121. Loose Coupling
  122. --------------------*/
  123. /* Collapse Margin on Consecutive Grid */
  124. .ui.grid > .ui.grid:first-child {
  125. margin-top: 0em;
  126. }
  127. .ui.grid > .ui.grid:last-child {
  128. margin-bottom: 0em;
  129. }
  130. /* Segment inside Aligned Grid */
  131. .ui.grid .aligned.row > .column > .segment:not(.compact),
  132. .ui.aligned.grid .column > .segment:not(.compact) {
  133. width: 100%;
  134. }
  135. /* Align Dividers with Gutter */
  136. .ui.grid .row + .ui.divider {
  137. -webkit-box-flex: 1;
  138. -webkit-flex-grow: 1;
  139. -ms-flex-positive: 1;
  140. flex-grow: 1;
  141. margin: 1rem 1rem;
  142. }
  143. .ui.grid .column + .ui.vertical.divider {
  144. height: calc(50% - 1rem );
  145. }
  146. /* Remove Border on Last Horizontal Segment */
  147. .ui.grid > .row > .column:last-child > .horizontal.segment,
  148. .ui.grid > .column:last-child > .horizontal.segment {
  149. box-shadow: none;
  150. }
  151. /*******************************
  152. Variations
  153. *******************************/
  154. /*-----------------------
  155. Page Grid
  156. -------------------------*/
  157. @media only screen and (max-width: 767px) {
  158. .ui.page.grid {
  159. width: auto;
  160. padding-left: 0em;
  161. padding-right: 0em;
  162. margin-left: 0em;
  163. margin-right: 0em;
  164. }
  165. }
  166. @media only screen and (min-width: 768px) and (max-width: 991px) {
  167. .ui.page.grid {
  168. width: auto;
  169. margin-left: 0em;
  170. margin-right: 0em;
  171. padding-left: 2em;
  172. padding-right: 2em;
  173. }
  174. }
  175. @media only screen and (min-width: 992px) and (max-width: 1199px) {
  176. .ui.page.grid {
  177. width: auto;
  178. margin-left: 0em;
  179. margin-right: 0em;
  180. padding-left: 3%;
  181. padding-right: 3%;
  182. }
  183. }
  184. @media only screen and (min-width: 1200px) and (max-width: 1919px) {
  185. .ui.page.grid {
  186. width: auto;
  187. margin-left: 0em;
  188. margin-right: 0em;
  189. padding-left: 15%;
  190. padding-right: 15%;
  191. }
  192. }
  193. @media only screen and (min-width: 1920px) {
  194. .ui.page.grid {
  195. width: auto;
  196. margin-left: 0em;
  197. margin-right: 0em;
  198. padding-left: 23%;
  199. padding-right: 23%;
  200. }
  201. }
  202. /*-------------------
  203. Column Count
  204. --------------------*/
  205. /* Assume full width with one column */
  206. .ui.grid > .column:only-child,
  207. .ui.grid > .row > .column:only-child {
  208. width: 100%;
  209. }
  210. /* Grid Based */
  211. .ui[class*="one column"].grid > .row > .column,
  212. .ui[class*="one column"].grid > .column:not(.row) {
  213. width: 100%;
  214. }
  215. .ui[class*="two column"].grid > .row > .column,
  216. .ui[class*="two column"].grid > .column:not(.row) {
  217. width: 50%;
  218. }
  219. .ui[class*="three column"].grid > .row > .column,
  220. .ui[class*="three column"].grid > .column:not(.row) {
  221. width: 33.33333333%;
  222. }
  223. .ui[class*="four column"].grid > .row > .column,
  224. .ui[class*="four column"].grid > .column:not(.row) {
  225. width: 25%;
  226. }
  227. .ui[class*="five column"].grid > .row > .column,
  228. .ui[class*="five column"].grid > .column:not(.row) {
  229. width: 20%;
  230. }
  231. .ui[class*="six column"].grid > .row > .column,
  232. .ui[class*="six column"].grid > .column:not(.row) {
  233. width: 16.66666667%;
  234. }
  235. .ui[class*="seven column"].grid > .row > .column,
  236. .ui[class*="seven column"].grid > .column:not(.row) {
  237. width: 14.28571429%;
  238. }
  239. .ui[class*="eight column"].grid > .row > .column,
  240. .ui[class*="eight column"].grid > .column:not(.row) {
  241. width: 12.5%;
  242. }
  243. .ui[class*="nine column"].grid > .row > .column,
  244. .ui[class*="nine column"].grid > .column:not(.row) {
  245. width: 11.11111111%;
  246. }
  247. .ui[class*="ten column"].grid > .row > .column,
  248. .ui[class*="ten column"].grid > .column:not(.row) {
  249. width: 10%;
  250. }
  251. .ui[class*="eleven column"].grid > .row > .column,
  252. .ui[class*="eleven column"].grid > .column:not(.row) {
  253. width: 9.09090909%;
  254. }
  255. .ui[class*="twelve column"].grid > .row > .column,
  256. .ui[class*="twelve column"].grid > .column:not(.row) {
  257. width: 8.33333333%;
  258. }
  259. .ui[class*="thirteen column"].grid > .row > .column,
  260. .ui[class*="thirteen column"].grid > .column:not(.row) {
  261. width: 7.69230769%;
  262. }
  263. .ui[class*="fourteen column"].grid > .row > .column,
  264. .ui[class*="fourteen column"].grid > .column:not(.row) {
  265. width: 7.14285714%;
  266. }
  267. .ui[class*="fifteen column"].grid > .row > .column,
  268. .ui[class*="fifteen column"].grid > .column:not(.row) {
  269. width: 6.66666667%;
  270. }
  271. .ui[class*="sixteen column"].grid > .row > .column,
  272. .ui[class*="sixteen column"].grid > .column:not(.row) {
  273. width: 6.25%;
  274. }
  275. /* Row Based Overrides */
  276. .ui.grid > [class*="one column"].row > .column {
  277. width: 100% !important;
  278. }
  279. .ui.grid > [class*="two column"].row > .column {
  280. width: 50% !important;
  281. }
  282. .ui.grid > [class*="three column"].row > .column {
  283. width: 33.33333333% !important;
  284. }
  285. .ui.grid > [class*="four column"].row > .column {
  286. width: 25% !important;
  287. }
  288. .ui.grid > [class*="five column"].row > .column {
  289. width: 20% !important;
  290. }
  291. .ui.grid > [class*="six column"].row > .column {
  292. width: 16.66666667% !important;
  293. }
  294. .ui.grid > [class*="seven column"].row > .column {
  295. width: 14.28571429% !important;
  296. }
  297. .ui.grid > [class*="eight column"].row > .column {
  298. width: 12.5% !important;
  299. }
  300. .ui.grid > [class*="nine column"].row > .column {
  301. width: 11.11111111% !important;
  302. }
  303. .ui.grid > [class*="ten column"].row > .column {
  304. width: 10% !important;
  305. }
  306. .ui.grid > [class*="eleven column"].row > .column {
  307. width: 9.09090909% !important;
  308. }
  309. .ui.grid > [class*="twelve column"].row > .column {
  310. width: 8.33333333% !important;
  311. }
  312. .ui.grid > [class*="thirteen column"].row > .column {
  313. width: 7.69230769% !important;
  314. }
  315. .ui.grid > [class*="fourteen column"].row > .column {
  316. width: 7.14285714% !important;
  317. }
  318. .ui.grid > [class*="fifteen column"].row > .column {
  319. width: 6.66666667% !important;
  320. }
  321. .ui.grid > [class*="sixteen column"].row > .column {
  322. width: 6.25% !important;
  323. }
  324. /*-------------------
  325. Column Width
  326. --------------------*/
  327. /* Sizing Combinations */
  328. .ui.grid > .row > [class*="one wide"].column,
  329. .ui.grid > .column.row > [class*="one wide"].column,
  330. .ui.grid > [class*="one wide"].column,
  331. .ui.column.grid > [class*="one wide"].column {
  332. width: 6.25% !important;
  333. }
  334. .ui.grid > .row > [class*="two wide"].column,
  335. .ui.grid > .column.row > [class*="two wide"].column,
  336. .ui.grid > [class*="two wide"].column,
  337. .ui.column.grid > [class*="two wide"].column {
  338. width: 12.5% !important;
  339. }
  340. .ui.grid > .row > [class*="three wide"].column,
  341. .ui.grid > .column.row > [class*="three wide"].column,
  342. .ui.grid > [class*="three wide"].column,
  343. .ui.column.grid > [class*="three wide"].column {
  344. width: 18.75% !important;
  345. }
  346. .ui.grid > .row > [class*="four wide"].column,
  347. .ui.grid > .column.row > [class*="four wide"].column,
  348. .ui.grid > [class*="four wide"].column,
  349. .ui.column.grid > [class*="four wide"].column {
  350. width: 25% !important;
  351. }
  352. .ui.grid > .row > [class*="five wide"].column,
  353. .ui.grid > .column.row > [class*="five wide"].column,
  354. .ui.grid > [class*="five wide"].column,
  355. .ui.column.grid > [class*="five wide"].column {
  356. width: 31.25% !important;
  357. }
  358. .ui.grid > .row > [class*="six wide"].column,
  359. .ui.grid > .column.row > [class*="six wide"].column,
  360. .ui.grid > [class*="six wide"].column,
  361. .ui.column.grid > [class*="six wide"].column {
  362. width: 37.5% !important;
  363. }
  364. .ui.grid > .row > [class*="seven wide"].column,
  365. .ui.grid > .column.row > [class*="seven wide"].column,
  366. .ui.grid > [class*="seven wide"].column,
  367. .ui.column.grid > [class*="seven wide"].column {
  368. width: 43.75% !important;
  369. }
  370. .ui.grid > .row > [class*="eight wide"].column,
  371. .ui.grid > .column.row > [class*="eight wide"].column,
  372. .ui.grid > [class*="eight wide"].column,
  373. .ui.column.grid > [class*="eight wide"].column {
  374. width: 50% !important;
  375. }
  376. .ui.grid > .row > [class*="nine wide"].column,
  377. .ui.grid > .column.row > [class*="nine wide"].column,
  378. .ui.grid > [class*="nine wide"].column,
  379. .ui.column.grid > [class*="nine wide"].column {
  380. width: 56.25% !important;
  381. }
  382. .ui.grid > .row > [class*="ten wide"].column,
  383. .ui.grid > .column.row > [class*="ten wide"].column,
  384. .ui.grid > [class*="ten wide"].column,
  385. .ui.column.grid > [class*="ten wide"].column {
  386. width: 62.5% !important;
  387. }
  388. .ui.grid > .row > [class*="eleven wide"].column,
  389. .ui.grid > .column.row > [class*="eleven wide"].column,
  390. .ui.grid > [class*="eleven wide"].column,
  391. .ui.column.grid > [class*="eleven wide"].column {
  392. width: 68.75% !important;
  393. }
  394. .ui.grid > .row > [class*="twelve wide"].column,
  395. .ui.grid > .column.row > [class*="twelve wide"].column,
  396. .ui.grid > [class*="twelve wide"].column,
  397. .ui.column.grid > [class*="twelve wide"].column {
  398. width: 75% !important;
  399. }
  400. .ui.grid > .row > [class*="thirteen wide"].column,
  401. .ui.grid > .column.row > [class*="thirteen wide"].column,
  402. .ui.grid > [class*="thirteen wide"].column,
  403. .ui.column.grid > [class*="thirteen wide"].column {
  404. width: 81.25% !important;
  405. }
  406. .ui.grid > .row > [class*="fourteen wide"].column,
  407. .ui.grid > .column.row > [class*="fourteen wide"].column,
  408. .ui.grid > [class*="fourteen wide"].column,
  409. .ui.column.grid > [class*="fourteen wide"].column {
  410. width: 87.5% !important;
  411. }
  412. .ui.grid > .row > [class*="fifteen wide"].column,
  413. .ui.grid > .column.row > [class*="fifteen wide"].column,
  414. .ui.grid > [class*="fifteen wide"].column,
  415. .ui.column.grid > [class*="fifteen wide"].column {
  416. width: 93.75% !important;
  417. }
  418. .ui.grid > .row > [class*="sixteen wide"].column,
  419. .ui.grid > .column.row > [class*="sixteen wide"].column,
  420. .ui.grid > [class*="sixteen wide"].column,
  421. .ui.column.grid > [class*="sixteen wide"].column {
  422. width: 100% !important;
  423. }
  424. /*----------------------
  425. Width per Device
  426. -----------------------*/
  427. /* Mobile Sizing Combinations */
  428. @media only screen and (min-width: 320px) and (max-width: 767px) {
  429. .ui.grid > .row > [class*="one wide mobile"].column,
  430. .ui.grid > .column.row > [class*="one wide mobile"].column,
  431. .ui.grid > [class*="one wide mobile"].column,
  432. .ui.column.grid > [class*="one wide mobile"].column {
  433. width: 6.25% !important;
  434. }
  435. .ui.grid > .row > [class*="two wide mobile"].column,
  436. .ui.grid > .column.row > [class*="two wide mobile"].column,
  437. .ui.grid > [class*="two wide mobile"].column,
  438. .ui.column.grid > [class*="two wide mobile"].column {
  439. width: 12.5% !important;
  440. }
  441. .ui.grid > .row > [class*="three wide mobile"].column,
  442. .ui.grid > .column.row > [class*="three wide mobile"].column,
  443. .ui.grid > [class*="three wide mobile"].column,
  444. .ui.column.grid > [class*="three wide mobile"].column {
  445. width: 18.75% !important;
  446. }
  447. .ui.grid > .row > [class*="four wide mobile"].column,
  448. .ui.grid > .column.row > [class*="four wide mobile"].column,
  449. .ui.grid > [class*="four wide mobile"].column,
  450. .ui.column.grid > [class*="four wide mobile"].column {
  451. width: 25% !important;
  452. }
  453. .ui.grid > .row > [class*="five wide mobile"].column,
  454. .ui.grid > .column.row > [class*="five wide mobile"].column,
  455. .ui.grid > [class*="five wide mobile"].column,
  456. .ui.column.grid > [class*="five wide mobile"].column {
  457. width: 31.25% !important;
  458. }
  459. .ui.grid > .row > [class*="six wide mobile"].column,
  460. .ui.grid > .column.row > [class*="six wide mobile"].column,
  461. .ui.grid > [class*="six wide mobile"].column,
  462. .ui.column.grid > [class*="six wide mobile"].column {
  463. width: 37.5% !important;
  464. }
  465. .ui.grid > .row > [class*="seven wide mobile"].column,
  466. .ui.grid > .column.row > [class*="seven wide mobile"].column,
  467. .ui.grid > [class*="seven wide mobile"].column,
  468. .ui.column.grid > [class*="seven wide mobile"].column {
  469. width: 43.75% !important;
  470. }
  471. .ui.grid > .row > [class*="eight wide mobile"].column,
  472. .ui.grid > .column.row > [class*="eight wide mobile"].column,
  473. .ui.grid > [class*="eight wide mobile"].column,
  474. .ui.column.grid > [class*="eight wide mobile"].column {
  475. width: 50% !important;
  476. }
  477. .ui.grid > .row > [class*="nine wide mobile"].column,
  478. .ui.grid > .column.row > [class*="nine wide mobile"].column,
  479. .ui.grid > [class*="nine wide mobile"].column,
  480. .ui.column.grid > [class*="nine wide mobile"].column {
  481. width: 56.25% !important;
  482. }
  483. .ui.grid > .row > [class*="ten wide mobile"].column,
  484. .ui.grid > .column.row > [class*="ten wide mobile"].column,
  485. .ui.grid > [class*="ten wide mobile"].column,
  486. .ui.column.grid > [class*="ten wide mobile"].column {
  487. width: 62.5% !important;
  488. }
  489. .ui.grid > .row > [class*="eleven wide mobile"].column,
  490. .ui.grid > .column.row > [class*="eleven wide mobile"].column,
  491. .ui.grid > [class*="eleven wide mobile"].column,
  492. .ui.column.grid > [class*="eleven wide mobile"].column {
  493. width: 68.75% !important;
  494. }
  495. .ui.grid > .row > [class*="twelve wide mobile"].column,
  496. .ui.grid > .column.row > [class*="twelve wide mobile"].column,
  497. .ui.grid > [class*="twelve wide mobile"].column,
  498. .ui.column.grid > [class*="twelve wide mobile"].column {
  499. width: 75% !important;
  500. }
  501. .ui.grid > .row > [class*="thirteen wide mobile"].column,
  502. .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
  503. .ui.grid > [class*="thirteen wide mobile"].column,
  504. .ui.column.grid > [class*="thirteen wide mobile"].column {
  505. width: 81.25% !important;
  506. }
  507. .ui.grid > .row > [class*="fourteen wide mobile"].column,
  508. .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
  509. .ui.grid > [class*="fourteen wide mobile"].column,
  510. .ui.column.grid > [class*="fourteen wide mobile"].column {
  511. width: 87.5% !important;
  512. }
  513. .ui.grid > .row > [class*="fifteen wide mobile"].column,
  514. .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
  515. .ui.grid > [class*="fifteen wide mobile"].column,
  516. .ui.column.grid > [class*="fifteen wide mobile"].column {
  517. width: 93.75% !important;
  518. }
  519. .ui.grid > .row > [class*="sixteen wide mobile"].column,
  520. .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
  521. .ui.grid > [class*="sixteen wide mobile"].column,
  522. .ui.column.grid > [class*="sixteen wide mobile"].column {
  523. width: 100% !important;
  524. }
  525. }
  526. /* Tablet Sizing Combinations */
  527. @media only screen and (min-width: 768px) and (max-width: 991px) {
  528. .ui.grid > .row > [class*="one wide tablet"].column,
  529. .ui.grid > .column.row > [class*="one wide tablet"].column,
  530. .ui.grid > [class*="one wide tablet"].column,
  531. .ui.column.grid > [class*="one wide tablet"].column {
  532. width: 6.25% !important;
  533. }
  534. .ui.grid > .row > [class*="two wide tablet"].column,
  535. .ui.grid > .column.row > [class*="two wide tablet"].column,
  536. .ui.grid > [class*="two wide tablet"].column,
  537. .ui.column.grid > [class*="two wide tablet"].column {
  538. width: 12.5% !important;
  539. }
  540. .ui.grid > .row > [class*="three wide tablet"].column,
  541. .ui.grid > .column.row > [class*="three wide tablet"].column,
  542. .ui.grid > [class*="three wide tablet"].column,
  543. .ui.column.grid > [class*="three wide tablet"].column {
  544. width: 18.75% !important;
  545. }
  546. .ui.grid > .row > [class*="four wide tablet"].column,
  547. .ui.grid > .column.row > [class*="four wide tablet"].column,
  548. .ui.grid > [class*="four wide tablet"].column,
  549. .ui.column.grid > [class*="four wide tablet"].column {
  550. width: 25% !important;
  551. }
  552. .ui.grid > .row > [class*="five wide tablet"].column,
  553. .ui.grid > .column.row > [class*="five wide tablet"].column,
  554. .ui.grid > [class*="five wide tablet"].column,
  555. .ui.column.grid > [class*="five wide tablet"].column {
  556. width: 31.25% !important;
  557. }
  558. .ui.grid > .row > [class*="six wide tablet"].column,
  559. .ui.grid > .column.row > [class*="six wide tablet"].column,
  560. .ui.grid > [class*="six wide tablet"].column,
  561. .ui.column.grid > [class*="six wide tablet"].column {
  562. width: 37.5% !important;
  563. }
  564. .ui.grid > .row > [class*="seven wide tablet"].column,
  565. .ui.grid > .column.row > [class*="seven wide tablet"].column,
  566. .ui.grid > [class*="seven wide tablet"].column,
  567. .ui.column.grid > [class*="seven wide tablet"].column {
  568. width: 43.75% !important;
  569. }
  570. .ui.grid > .row > [class*="eight wide tablet"].column,
  571. .ui.grid > .column.row > [class*="eight wide tablet"].column,
  572. .ui.grid > [class*="eight wide tablet"].column,
  573. .ui.column.grid > [class*="eight wide tablet"].column {
  574. width: 50% !important;
  575. }
  576. .ui.grid > .row > [class*="nine wide tablet"].column,
  577. .ui.grid > .column.row > [class*="nine wide tablet"].column,
  578. .ui.grid > [class*="nine wide tablet"].column,
  579. .ui.column.grid > [class*="nine wide tablet"].column {
  580. width: 56.25% !important;
  581. }
  582. .ui.grid > .row > [class*="ten wide tablet"].column,
  583. .ui.grid > .column.row > [class*="ten wide tablet"].column,
  584. .ui.grid > [class*="ten wide tablet"].column,
  585. .ui.column.grid > [class*="ten wide tablet"].column {
  586. width: 62.5% !important;
  587. }
  588. .ui.grid > .row > [class*="eleven wide tablet"].column,
  589. .ui.grid > .column.row > [class*="eleven wide tablet"].column,
  590. .ui.grid > [class*="eleven wide tablet"].column,
  591. .ui.column.grid > [class*="eleven wide tablet"].column {
  592. width: 68.75% !important;
  593. }
  594. .ui.grid > .row > [class*="twelve wide tablet"].column,
  595. .ui.grid > .column.row > [class*="twelve wide tablet"].column,
  596. .ui.grid > [class*="twelve wide tablet"].column,
  597. .ui.column.grid > [class*="twelve wide tablet"].column {
  598. width: 75% !important;
  599. }
  600. .ui.grid > .row > [class*="thirteen wide tablet"].column,
  601. .ui.grid > .column.row > [class*="thirteen wide tablet"].column,
  602. .ui.grid > [class*="thirteen wide tablet"].column,
  603. .ui.column.grid > [class*="thirteen wide tablet"].column {
  604. width: 81.25% !important;
  605. }
  606. .ui.grid > .row > [class*="fourteen wide tablet"].column,
  607. .ui.grid > .column.row > [class*="fourteen wide tablet"].column,
  608. .ui.grid > [class*="fourteen wide tablet"].column,
  609. .ui.column.grid > [class*="fourteen wide tablet"].column {
  610. width: 87.5% !important;
  611. }
  612. .ui.grid > .row > [class*="fifteen wide tablet"].column,
  613. .ui.grid > .column.row > [class*="fifteen wide tablet"].column,
  614. .ui.grid > [class*="fifteen wide tablet"].column,
  615. .ui.column.grid > [class*="fifteen wide tablet"].column {
  616. width: 93.75% !important;
  617. }
  618. .ui.grid > .row > [class*="sixteen wide tablet"].column,
  619. .ui.grid > .column.row > [class*="sixteen wide tablet"].column,
  620. .ui.grid > [class*="sixteen wide tablet"].column,
  621. .ui.column.grid > [class*="sixteen wide tablet"].column {
  622. width: 100% !important;
  623. }
  624. }
  625. /* Computer/Desktop Sizing Combinations */
  626. @media only screen and (min-width: 992px) {
  627. .ui.grid > .row > [class*="one wide computer"].column,
  628. .ui.grid > .column.row > [class*="one wide computer"].column,
  629. .ui.grid > [class*="one wide computer"].column,
  630. .ui.column.grid > [class*="one wide computer"].column {
  631. width: 6.25% !important;
  632. }
  633. .ui.grid > .row > [class*="two wide computer"].column,
  634. .ui.grid > .column.row > [class*="two wide computer"].column,
  635. .ui.grid > [class*="two wide computer"].column,
  636. .ui.column.grid > [class*="two wide computer"].column {
  637. width: 12.5% !important;
  638. }
  639. .ui.grid > .row > [class*="three wide computer"].column,
  640. .ui.grid > .column.row > [class*="three wide computer"].column,
  641. .ui.grid > [class*="three wide computer"].column,
  642. .ui.column.grid > [class*="three wide computer"].column {
  643. width: 18.75% !important;
  644. }
  645. .ui.grid > .row > [class*="four wide computer"].column,
  646. .ui.grid > .column.row > [class*="four wide computer"].column,
  647. .ui.grid > [class*="four wide computer"].column,
  648. .ui.column.grid > [class*="four wide computer"].column {
  649. width: 25% !important;
  650. }
  651. .ui.grid > .row > [class*="five wide computer"].column,
  652. .ui.grid > .column.row > [class*="five wide computer"].column,
  653. .ui.grid > [class*="five wide computer"].column,
  654. .ui.column.grid > [class*="five wide computer"].column {
  655. width: 31.25% !important;
  656. }
  657. .ui.grid > .row > [class*="six wide computer"].column,
  658. .ui.grid > .column.row > [class*="six wide computer"].column,
  659. .ui.grid > [class*="six wide computer"].column,
  660. .ui.column.grid > [class*="six wide computer"].column {
  661. width: 37.5% !important;
  662. }
  663. .ui.grid > .row > [class*="seven wide computer"].column,
  664. .ui.grid > .column.row > [class*="seven wide computer"].column,
  665. .ui.grid > [class*="seven wide computer"].column,
  666. .ui.column.grid > [class*="seven wide computer"].column {
  667. width: 43.75% !important;
  668. }
  669. .ui.grid > .row > [class*="eight wide computer"].column,
  670. .ui.grid > .column.row > [class*="eight wide computer"].column,
  671. .ui.grid > [class*="eight wide computer"].column,
  672. .ui.column.grid > [class*="eight wide computer"].column {
  673. width: 50% !important;
  674. }
  675. .ui.grid > .row > [class*="nine wide computer"].column,
  676. .ui.grid > .column.row > [class*="nine wide computer"].column,
  677. .ui.grid > [class*="nine wide computer"].column,
  678. .ui.column.grid > [class*="nine wide computer"].column {
  679. width: 56.25% !important;
  680. }
  681. .ui.grid > .row > [class*="ten wide computer"].column,
  682. .ui.grid > .column.row > [class*="ten wide computer"].column,
  683. .ui.grid > [class*="ten wide computer"].column,
  684. .ui.column.grid > [class*="ten wide computer"].column {
  685. width: 62.5% !important;
  686. }
  687. .ui.grid > .row > [class*="eleven wide computer"].column,
  688. .ui.grid > .column.row > [class*="eleven wide computer"].column,
  689. .ui.grid > [class*="eleven wide computer"].column,
  690. .ui.column.grid > [class*="eleven wide computer"].column {
  691. width: 68.75% !important;
  692. }
  693. .ui.grid > .row > [class*="twelve wide computer"].column,
  694. .ui.grid > .column.row > [class*="twelve wide computer"].column,
  695. .ui.grid > [class*="twelve wide computer"].column,
  696. .ui.column.grid > [class*="twelve wide computer"].column {
  697. width: 75% !important;
  698. }
  699. .ui.grid > .row > [class*="thirteen wide computer"].column,
  700. .ui.grid > .column.row > [class*="thirteen wide computer"].column,
  701. .ui.grid > [class*="thirteen wide computer"].column,
  702. .ui.column.grid > [class*="thirteen wide computer"].column {
  703. width: 81.25% !important;
  704. }
  705. .ui.grid > .row > [class*="fourteen wide computer"].column,
  706. .ui.grid > .column.row > [class*="fourteen wide computer"].column,
  707. .ui.grid > [class*="fourteen wide computer"].column,
  708. .ui.column.grid > [class*="fourteen wide computer"].column {
  709. width: 87.5% !important;
  710. }
  711. .ui.grid > .row > [class*="fifteen wide computer"].column,
  712. .ui.grid > .column.row > [class*="fifteen wide computer"].column,
  713. .ui.grid > [class*="fifteen wide computer"].column,
  714. .ui.column.grid > [class*="fifteen wide computer"].column {
  715. width: 93.75% !important;
  716. }
  717. .ui.grid > .row > [class*="sixteen wide computer"].column,
  718. .ui.grid > .column.row > [class*="sixteen wide computer"].column,
  719. .ui.grid > [class*="sixteen wide computer"].column,
  720. .ui.column.grid > [class*="sixteen wide computer"].column {
  721. width: 100% !important;
  722. }
  723. }
  724. /* Large Monitor Sizing Combinations */
  725. @media only screen and (min-width: 1200px) and (max-width: 1919px) {
  726. .ui.grid > .row > [class*="one wide large screen"].column,
  727. .ui.grid > .column.row > [class*="one wide large screen"].column,
  728. .ui.grid > [class*="one wide large screen"].column,
  729. .ui.column.grid > [class*="one wide large screen"].column {
  730. width: 6.25% !important;
  731. }
  732. .ui.grid > .row > [class*="two wide large screen"].column,
  733. .ui.grid > .column.row > [class*="two wide large screen"].column,
  734. .ui.grid > [class*="two wide large screen"].column,
  735. .ui.column.grid > [class*="two wide large screen"].column {
  736. width: 12.5% !important;
  737. }
  738. .ui.grid > .row > [class*="three wide large screen"].column,
  739. .ui.grid > .column.row > [class*="three wide large screen"].column,
  740. .ui.grid > [class*="three wide large screen"].column,
  741. .ui.column.grid > [class*="three wide large screen"].column {
  742. width: 18.75% !important;
  743. }
  744. .ui.grid > .row > [class*="four wide large screen"].column,
  745. .ui.grid > .column.row > [class*="four wide large screen"].column,
  746. .ui.grid > [class*="four wide large screen"].column,
  747. .ui.column.grid > [class*="four wide large screen"].column {
  748. width: 25% !important;
  749. }
  750. .ui.grid > .row > [class*="five wide large screen"].column,
  751. .ui.grid > .column.row > [class*="five wide large screen"].column,
  752. .ui.grid > [class*="five wide large screen"].column,
  753. .ui.column.grid > [class*="five wide large screen"].column {
  754. width: 31.25% !important;
  755. }
  756. .ui.grid > .row > [class*="six wide large screen"].column,
  757. .ui.grid > .column.row > [class*="six wide large screen"].column,
  758. .ui.grid > [class*="six wide large screen"].column,
  759. .ui.column.grid > [class*="six wide large screen"].column {
  760. width: 37.5% !important;
  761. }
  762. .ui.grid > .row > [class*="seven wide large screen"].column,
  763. .ui.grid > .column.row > [class*="seven wide large screen"].column,
  764. .ui.grid > [class*="seven wide large screen"].column,
  765. .ui.column.grid > [class*="seven wide large screen"].column {
  766. width: 43.75% !important;
  767. }
  768. .ui.grid > .row > [class*="eight wide large screen"].column,
  769. .ui.grid > .column.row > [class*="eight wide large screen"].column,
  770. .ui.grid > [class*="eight wide large screen"].column,
  771. .ui.column.grid > [class*="eight wide large screen"].column {
  772. width: 50% !important;
  773. }
  774. .ui.grid > .row > [class*="nine wide large screen"].column,
  775. .ui.grid > .column.row > [class*="nine wide large screen"].column,
  776. .ui.grid > [class*="nine wide large screen"].column,
  777. .ui.column.grid > [class*="nine wide large screen"].column {
  778. width: 56.25% !important;
  779. }
  780. .ui.grid > .row > [class*="ten wide large screen"].column,
  781. .ui.grid > .column.row > [class*="ten wide large screen"].column,
  782. .ui.grid > [class*="ten wide large screen"].column,
  783. .ui.column.grid > [class*="ten wide large screen"].column {
  784. width: 62.5% !important;
  785. }
  786. .ui.grid > .row > [class*="eleven wide large screen"].column,
  787. .ui.grid > .column.row > [class*="eleven wide large screen"].column,
  788. .ui.grid > [class*="eleven wide large screen"].column,
  789. .ui.column.grid > [class*="eleven wide large screen"].column {
  790. width: 68.75% !important;
  791. }
  792. .ui.grid > .row > [class*="twelve wide large screen"].column,
  793. .ui.grid > .column.row > [class*="twelve wide large screen"].column,
  794. .ui.grid > [class*="twelve wide large screen"].column,
  795. .ui.column.grid > [class*="twelve wide large screen"].column {
  796. width: 75% !important;
  797. }
  798. .ui.grid > .row > [class*="thirteen wide large screen"].column,
  799. .ui.grid > .column.row > [class*="thirteen wide large screen"].column,
  800. .ui.grid > [class*="thirteen wide large screen"].column,
  801. .ui.column.grid > [class*="thirteen wide large screen"].column {
  802. width: 81.25% !important;
  803. }
  804. .ui.grid > .row > [class*="fourteen wide large screen"].column,
  805. .ui.grid > .column.row > [class*="fourteen wide large screen"].column,
  806. .ui.grid > [class*="fourteen wide large screen"].column,
  807. .ui.column.grid > [class*="fourteen wide large screen"].column {
  808. width: 87.5% !important;
  809. }
  810. .ui.grid > .row > [class*="fifteen wide large screen"].column,
  811. .ui.grid > .column.row > [class*="fifteen wide large screen"].column,
  812. .ui.grid > [class*="fifteen wide large screen"].column,
  813. .ui.column.grid > [class*="fifteen wide large screen"].column {
  814. width: 93.75% !important;
  815. }
  816. .ui.grid > .row > [class*="sixteen wide large screen"].column,
  817. .ui.grid > .column.row > [class*="sixteen wide large screen"].column,
  818. .ui.grid > [class*="sixteen wide large screen"].column,
  819. .ui.column.grid > [class*="sixteen wide large screen"].column {
  820. width: 100% !important;
  821. }
  822. }
  823. /* Widescreen Sizing Combinations */
  824. @media only screen and (min-width: 1920px) {
  825. .ui.grid > .row > [class*="one wide widescreen"].column,
  826. .ui.grid > .column.row > [class*="one wide widescreen"].column,
  827. .ui.grid > [class*="one wide widescreen"].column,
  828. .ui.column.grid > [class*="one wide widescreen"].column {
  829. width: 6.25% !important;
  830. }
  831. .ui.grid > .row > [class*="two wide widescreen"].column,
  832. .ui.grid > .column.row > [class*="two wide widescreen"].column,
  833. .ui.grid > [class*="two wide widescreen"].column,
  834. .ui.column.grid > [class*="two wide widescreen"].column {
  835. width: 12.5% !important;
  836. }
  837. .ui.grid > .row > [class*="three wide widescreen"].column,
  838. .ui.grid > .column.row > [class*="three wide widescreen"].column,
  839. .ui.grid > [class*="three wide widescreen"].column,
  840. .ui.column.grid > [class*="three wide widescreen"].column {
  841. width: 18.75% !important;
  842. }
  843. .ui.grid > .row > [class*="four wide widescreen"].column,
  844. .ui.grid > .column.row > [class*="four wide widescreen"].column,
  845. .ui.grid > [class*="four wide widescreen"].column,
  846. .ui.column.grid > [class*="four wide widescreen"].column {
  847. width: 25% !important;
  848. }
  849. .ui.grid > .row > [class*="five wide widescreen"].column,
  850. .ui.grid > .column.row > [class*="five wide widescreen"].column,
  851. .ui.grid > [class*="five wide widescreen"].column,
  852. .ui.column.grid > [class*="five wide widescreen"].column {
  853. width: 31.25% !important;
  854. }
  855. .ui.grid > .row > [class*="six wide widescreen"].column,
  856. .ui.grid > .column.row > [class*="six wide widescreen"].column,
  857. .ui.grid > [class*="six wide widescreen"].column,
  858. .ui.column.grid > [class*="six wide widescreen"].column {
  859. width: 37.5% !important;
  860. }
  861. .ui.grid > .row > [class*="seven wide widescreen"].column,
  862. .ui.grid > .column.row > [class*="seven wide widescreen"].column,
  863. .ui.grid > [class*="seven wide widescreen"].column,
  864. .ui.column.grid > [class*="seven wide widescreen"].column {
  865. width: 43.75% !important;
  866. }
  867. .ui.grid > .row > [class*="eight wide widescreen"].column,
  868. .ui.grid > .column.row > [class*="eight wide widescreen"].column,
  869. .ui.grid > [class*="eight wide widescreen"].column,
  870. .ui.column.grid > [class*="eight wide widescreen"].column {
  871. width: 50% !important;
  872. }
  873. .ui.grid > .row > [class*="nine wide widescreen"].column,
  874. .ui.grid > .column.row > [class*="nine wide widescreen"].column,
  875. .ui.grid > [class*="nine wide widescreen"].column,
  876. .ui.column.grid > [class*="nine wide widescreen"].column {
  877. width: 56.25% !important;
  878. }
  879. .ui.grid > .row > [class*="ten wide widescreen"].column,
  880. .ui.grid > .column.row > [class*="ten wide widescreen"].column,
  881. .ui.grid > [class*="ten wide widescreen"].column,
  882. .ui.column.grid > [class*="ten wide widescreen"].column {
  883. width: 62.5% !important;
  884. }
  885. .ui.grid > .row > [class*="eleven wide widescreen"].column,
  886. .ui.grid > .column.row > [class*="eleven wide widescreen"].column,
  887. .ui.grid > [class*="eleven wide widescreen"].column,
  888. .ui.column.grid > [class*="eleven wide widescreen"].column {
  889. width: 68.75% !important;
  890. }
  891. .ui.grid > .row > [class*="twelve wide widescreen"].column,
  892. .ui.grid > .column.row > [class*="twelve wide widescreen"].column,
  893. .ui.grid > [class*="twelve wide widescreen"].column,
  894. .ui.column.grid > [class*="twelve wide widescreen"].column {
  895. width: 75% !important;
  896. }
  897. .ui.grid > .row > [class*="thirteen wide widescreen"].column,
  898. .ui.grid > .column.row > [class*="thirteen wide widescreen"].column,
  899. .ui.grid > [class*="thirteen wide widescreen"].column,
  900. .ui.column.grid > [class*="thirteen wide widescreen"].column {
  901. width: 81.25% !important;
  902. }
  903. .ui.grid > .row > [class*="fourteen wide widescreen"].column,
  904. .ui.grid > .column.row > [class*="fourteen wide widescreen"].column,
  905. .ui.grid > [class*="fourteen wide widescreen"].column,
  906. .ui.column.grid > [class*="fourteen wide widescreen"].column {
  907. width: 87.5% !important;
  908. }
  909. .ui.grid > .row > [class*="fifteen wide widescreen"].column,
  910. .ui.grid > .column.row > [class*="fifteen wide widescreen"].column,
  911. .ui.grid > [class*="fifteen wide widescreen"].column,
  912. .ui.column.grid > [class*="fifteen wide widescreen"].column {
  913. width: 93.75% !important;
  914. }
  915. .ui.grid > .row > [class*="sixteen wide widescreen"].column,
  916. .ui.grid > .column.row > [class*="sixteen wide widescreen"].column,
  917. .ui.grid > [class*="sixteen wide widescreen"].column,
  918. .ui.column.grid > [class*="sixteen wide widescreen"].column {
  919. width: 100% !important;
  920. }
  921. }
  922. /*----------------------
  923. Centered
  924. -----------------------*/
  925. .ui.centered.grid,
  926. .ui.centered.grid > .row,
  927. .ui.grid > .centered.row {
  928. text-align: center;
  929. -webkit-box-pack: center;
  930. -webkit-justify-content: center;
  931. -ms-flex-pack: center;
  932. justify-content: center;
  933. }
  934. .ui.centered.grid > .column:not(.aligned):not(.row),
  935. .ui.centered.grid > .row > .column:not(.aligned),
  936. .ui.grid .centered.row > .column:not(.aligned) {
  937. text-align: left;
  938. }
  939. .ui.grid > .centered.column,
  940. .ui.grid > .row > .centered.column {
  941. display: block;
  942. margin-left: auto;
  943. margin-right: auto;
  944. }
  945. /*----------------------
  946. Relaxed
  947. -----------------------*/
  948. .ui.relaxed.grid > .column:not(.row),
  949. .ui.relaxed.grid > .row > .column,
  950. .ui.grid > .relaxed.row > .column {
  951. padding-left: 1.5rem;
  952. padding-right: 1.5rem;
  953. }
  954. .ui[class*="very relaxed"].grid > .column:not(.row),
  955. .ui[class*="very relaxed"].grid > .row > .column,
  956. .ui.grid > [class*="very relaxed"].row > .column {
  957. padding-left: 2.5rem;
  958. padding-right: 2.5rem;
  959. }
  960. /* Coupling with UI Divider */
  961. .ui.relaxed.grid .row + .ui.divider,
  962. .ui.grid .relaxed.row + .ui.divider {
  963. margin-left: 1.5rem;
  964. margin-right: 1.5rem;
  965. }
  966. .ui[class*="very relaxed"].grid .row + .ui.divider,
  967. .ui.grid [class*="very relaxed"].row + .ui.divider {
  968. margin-left: 2.5rem;
  969. margin-right: 2.5rem;
  970. }
  971. /*----------------------
  972. Padded
  973. -----------------------*/
  974. .ui.padded.grid:not(.vertically):not(.horizontally) {
  975. margin: 0em !important;
  976. }
  977. [class*="horizontally padded"].ui.grid {
  978. margin-left: 0em !important;
  979. margin-right: 0em !important;
  980. }
  981. [class*="vertically padded"].ui.grid {
  982. margin-top: 0em !important;
  983. margin-bottom: 0em !important;
  984. }
  985. /*----------------------
  986. "Floated"
  987. -----------------------*/
  988. .ui.grid [class*="left floated"].column {
  989. margin-right: auto;
  990. }
  991. .ui.grid [class*="right floated"].column {
  992. margin-left: auto;
  993. }
  994. /*----------------------
  995. Divided
  996. -----------------------*/
  997. .ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
  998. .ui.divided.grid:not([class*="vertically divided"]) > .row > .column {
  999. box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
  1000. }
  1001. /* Swap from padding to margin on columns to have dividers align */
  1002. .ui[class*="vertically divided"].grid > .column:not(.row),
  1003. .ui[class*="vertically divided"].grid > .row > .column {
  1004. margin-top: 1rem;
  1005. margin-bottom: 1rem;
  1006. padding-top: 0rem;
  1007. padding-bottom: 0rem;
  1008. }
  1009. .ui[class*="vertically divided"].grid > .row {
  1010. margin-top: 0em;
  1011. margin-bottom: 0em;
  1012. }
  1013. /* No divider on first column on row */
  1014. .ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
  1015. .ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
  1016. box-shadow: none;
  1017. }
  1018. /* Divided Row */
  1019. .ui.grid > .divided.row > .column {
  1020. box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
  1021. }
  1022. .ui.grid > .divided.row > .column:first-child {
  1023. box-shadow: none;
  1024. }
  1025. /* Vertically Divided */
  1026. .ui[class*="vertically divided"].grid > .row {
  1027. position: relative;
  1028. }
  1029. .ui[class*="vertically divided"].grid > .row:before {
  1030. position: absolute;
  1031. content: "";
  1032. top: 0em;
  1033. left: 0px;
  1034. width: calc(100% - 2rem );
  1035. height: 1px;
  1036. margin: 0% 1rem;
  1037. box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15);
  1038. }
  1039. /* Padded Horizontally Divided */
  1040. [class*="horizontally padded"].ui.divided.grid,
  1041. .ui.padded.divided.grid:not(.vertically):not(.horizontally) {
  1042. width: 100%;
  1043. }
  1044. /* First Row Vertically Divided */
  1045. .ui[class*="vertically divided"].grid > .row:first-child:before {
  1046. box-shadow: none;
  1047. }
  1048. /* Inverted Divided */
  1049. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
  1050. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column {
  1051. box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1);
  1052. }
  1053. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child,
  1054. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
  1055. box-shadow: none;
  1056. }
  1057. .ui.inverted[class*="vertically divided"].grid > .row:before {
  1058. box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
  1059. }
  1060. /* Relaxed */
  1061. .ui.relaxed[class*="vertically divided"].grid > .row:before {
  1062. margin-left: 1.5rem;
  1063. margin-right: 1.5rem;
  1064. width: calc(100% - 3rem );
  1065. }
  1066. .ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
  1067. margin-left: 5rem;
  1068. margin-right: 5rem;
  1069. width: calc(100% - 5rem );
  1070. }
  1071. /*----------------------
  1072. Celled
  1073. -----------------------*/
  1074. .ui.celled.grid {
  1075. width: 100%;
  1076. margin: 1em 0em;
  1077. box-shadow: 0px 0px 0px 1px #d4d4d5;
  1078. }
  1079. .ui.celled.grid > .row,
  1080. .ui.celled.grid > .column.row,
  1081. .ui.celled.grid > .column.row:first-child {
  1082. width: 100% !important;
  1083. margin: 0em;
  1084. padding: 0em;
  1085. box-shadow: 0px -1px 0px 0px #d4d4d5;
  1086. }
  1087. .ui.celled.grid > .column:not(.row),
  1088. .ui.celled.grid > .row > .column {
  1089. box-shadow: -1px 0px 0px 0px #d4d4d5;
  1090. }
  1091. .ui.celled.grid > .column:first-child,
  1092. .ui.celled.grid > .row > .column:first-child {
  1093. box-shadow: none;
  1094. }
  1095. .ui.celled.page.grid {
  1096. box-shadow: none;
  1097. }
  1098. .ui.celled.grid > .column:not(.row),
  1099. .ui.celled.grid > .row > .column {
  1100. padding: 1em;
  1101. }
  1102. .ui.relaxed.celled.grid > .column:not(.row),
  1103. .ui.relaxed.celled.grid > .row > .column {
  1104. padding: 1.5em;
  1105. }
  1106. .ui[class*="very relaxed"].celled.grid > .column:not(.row),
  1107. .ui[class*="very relaxed"].celled.grid > .row > .column {
  1108. padding: 2em;
  1109. }
  1110. /* Internally Celled */
  1111. .ui[class*="internally celled"].grid {
  1112. box-shadow: none;
  1113. margin: 0em;
  1114. }
  1115. .ui[class*="internally celled"].grid > .row:first-child {
  1116. box-shadow: none;
  1117. }
  1118. .ui[class*="internally celled"].grid > .row > .column:first-child {
  1119. box-shadow: none;
  1120. }
  1121. /*----------------------
  1122. Vertically Aligned
  1123. -----------------------*/
  1124. /* Top Aligned */
  1125. .ui[class*="top aligned"].grid .column:not(.row),
  1126. .ui.grid > [class*="top aligned"].row > .column,
  1127. .ui.grid > [class*="top aligned"].column:not(.row),
  1128. .ui.grid > .row > [class*="top aligned"].column {
  1129. -webkit-box-orient: vertical;
  1130. -webkit-box-direction: normal;
  1131. -webkit-flex-direction: column;
  1132. -ms-flex-direction: column;
  1133. flex-direction: column;
  1134. vertical-align: top;
  1135. -webkit-align-self: flex-start !important;
  1136. -ms-flex-item-align: start !important;
  1137. align-self: flex-start !important;
  1138. }
  1139. /* Middle Aligned */
  1140. .ui[class*="middle aligned"].grid .column:not(.row),
  1141. .ui.grid > [class*="middle aligned"].row > .column,
  1142. .ui.grid > [class*="middle aligned"].column:not(.row),
  1143. .ui.grid > .row > [class*="middle aligned"].column {
  1144. -webkit-box-orient: vertical;
  1145. -webkit-box-direction: normal;
  1146. -webkit-flex-direction: column;
  1147. -ms-flex-direction: column;
  1148. flex-direction: column;
  1149. vertical-align: middle;
  1150. -webkit-align-self: center !important;
  1151. -ms-flex-item-align: center !important;
  1152. align-self: center !important;
  1153. }
  1154. /* Bottom Aligned */
  1155. .ui[class*="bottom aligned"].grid .column:not(.row),
  1156. .ui.grid > [class*="bottom aligned"].row > .column,
  1157. .ui.grid > [class*="bottom aligned"].column:not(.row),
  1158. .ui.grid > .row > [class*="bottom aligned"].column {
  1159. -webkit-box-orient: vertical;
  1160. -webkit-box-direction: normal;
  1161. -webkit-flex-direction: column;
  1162. -ms-flex-direction: column;
  1163. flex-direction: column;
  1164. vertical-align: bottom;
  1165. -webkit-align-self: flex-end !important;
  1166. -ms-flex-item-align: end !important;
  1167. align-self: flex-end !important;
  1168. }
  1169. /* Stretched */
  1170. .ui.stretched.grid > .row > .column,
  1171. .ui.stretched.grid > .column,
  1172. .ui.grid > .stretched.row > .column,
  1173. .ui.grid > .stretched.column:not(.row),
  1174. .ui.grid > .row > .stretched.column {
  1175. display: -webkit-inline-box !important;
  1176. display: -webkit-inline-flex !important;
  1177. display: -ms-inline-flexbox !important;
  1178. display: inline-flex !important;
  1179. -webkit-align-self: stretch;
  1180. -ms-flex-item-align: stretch;
  1181. align-self: stretch;
  1182. -webkit-box-orient: vertical;
  1183. -webkit-box-direction: normal;
  1184. -webkit-flex-direction: column;
  1185. -ms-flex-direction: column;
  1186. flex-direction: column;
  1187. }
  1188. .ui.stretched.grid > .row > .column > *,
  1189. .ui.stretched.grid > .column > *,
  1190. .ui.grid > .stretched.row > .column > *,
  1191. .ui.grid > .stretched.column:not(.row) > *,
  1192. .ui.grid > .row > .stretched.column > * {
  1193. -webkit-box-flex: 1;
  1194. -webkit-flex-grow: 1;
  1195. -ms-flex-positive: 1;
  1196. flex-grow: 1;
  1197. }
  1198. /*----------------------
  1199. Horizontally Centered
  1200. -----------------------*/
  1201. /* Left Aligned */
  1202. .ui[class*="left aligned"].grid .column,
  1203. .ui.grid > [class*="left aligned"].row > .column,
  1204. .ui.grid > [class*="left aligned"].column.column,
  1205. .ui.grid > .row > [class*="left aligned"].column {
  1206. text-align: left;
  1207. -webkit-align-self: inherit;
  1208. -ms-flex-item-align: inherit;
  1209. align-self: inherit;
  1210. }
  1211. /* Center Aligned */
  1212. .ui[class*="center aligned"].grid .column,
  1213. .ui.grid > [class*="center aligned"].row > .column,
  1214. .ui.grid > [class*="center aligned"].column.column,
  1215. .ui.grid > .row > [class*="center aligned"].column {
  1216. text-align: center;
  1217. -webkit-align-self: inherit;
  1218. -ms-flex-item-align: inherit;
  1219. align-self: inherit;
  1220. }
  1221. .ui[class*="center aligned"].grid {
  1222. -webkit-box-pack: center;
  1223. -webkit-justify-content: center;
  1224. -ms-flex-pack: center;
  1225. justify-content: center;
  1226. }
  1227. /* Right Aligned */
  1228. .ui[class*="right aligned"].grid .column,
  1229. .ui.grid > [class*="right aligned"].row > .column,
  1230. .ui.grid > [class*="right aligned"].column.column,
  1231. .ui.grid > .row > [class*="right aligned"].column {
  1232. text-align: right;
  1233. -webkit-align-self: inherit;
  1234. -ms-flex-item-align: inherit;
  1235. align-self: inherit;
  1236. }
  1237. /* Justified */
  1238. .ui.justified.grid,
  1239. .ui.justified.grid > .row > .column,
  1240. .ui.justified.grid > .column,
  1241. .ui.grid .justified.column,
  1242. .ui.grid > .justified.row > .column {
  1243. text-align: justify;
  1244. -webkit-hyphens: auto;
  1245. -moz-hyphens: auto;
  1246. -ms-hyphens: auto;
  1247. hyphens: auto;
  1248. }
  1249. .ui.grid .justified.column {
  1250. text-align: justify !important;
  1251. -webkit-hyphens: auto !important;
  1252. -moz-hyphens: auto !important;
  1253. -ms-hyphens: auto !important;
  1254. hyphens: auto !important;
  1255. }
  1256. /*----------------------
  1257. Colored
  1258. -----------------------*/
  1259. .ui.grid > .row > .red.column,
  1260. .ui.grid > .row > .orange.column,
  1261. .ui.grid > .row > .yellow.column,
  1262. .ui.grid > .row > .olive.column,
  1263. .ui.grid > .row > .green.column,
  1264. .ui.grid > .row > .teal.column,
  1265. .ui.grid > .row > .blue.column,
  1266. .ui.grid > .row > .violet.column,
  1267. .ui.grid > .row > .purple.column,
  1268. .ui.grid > .row > .pink.column,
  1269. .ui.grid > .row > .brown.column,
  1270. .ui.grid > .row > .grey.column,
  1271. .ui.grid > .row > .black.column {
  1272. margin-top: -1rem;
  1273. margin-bottom: -1rem;
  1274. padding-top: 1rem;
  1275. padding-bottom: 1rem;
  1276. }
  1277. /* Red */
  1278. .ui.grid > .red.row,
  1279. .ui.grid > .red.column,
  1280. .ui.grid > .row > .red.column {
  1281. background-color: #db2828 !important;
  1282. color: #ffffff;
  1283. }
  1284. /* Orange */
  1285. .ui.grid > .orange.row,
  1286. .ui.grid > .orange.column,
  1287. .ui.grid > .row > .orange.column {
  1288. background-color: #f2711c !important;
  1289. color: #ffffff;
  1290. }
  1291. /* Yellow */
  1292. .ui.grid > .yellow.row,
  1293. .ui.grid > .yellow.column,
  1294. .ui.grid > .row > .yellow.column {
  1295. background-color: #fbbd08 !important;
  1296. color: #ffffff;
  1297. }
  1298. /* Olive */
  1299. .ui.grid > .olive.row,
  1300. .ui.grid > .olive.column,
  1301. .ui.grid > .row > .olive.column {
  1302. background-color: #b5cc18 !important;
  1303. color: #ffffff;
  1304. }
  1305. /* Green */
  1306. .ui.grid > .green.row,
  1307. .ui.grid > .green.column,
  1308. .ui.grid > .row > .green.column {
  1309. background-color: #21ba45 !important;
  1310. color: #ffffff;
  1311. }
  1312. /* Teal */
  1313. .ui.grid > .teal.row,
  1314. .ui.grid > .teal.column,
  1315. .ui.grid > .row > .teal.column {
  1316. background-color: #00b5ad !important;
  1317. color: #ffffff;
  1318. }
  1319. /* Blue */
  1320. .ui.grid > .blue.row,
  1321. .ui.grid > .blue.column,
  1322. .ui.grid > .row > .blue.column {
  1323. background-color: #2185d0 !important;
  1324. color: #ffffff;
  1325. }
  1326. /* Violet */
  1327. .ui.grid > .violet.row,
  1328. .ui.grid > .violet.column,
  1329. .ui.grid > .row > .violet.column {
  1330. background-color: #6435c9 !important;
  1331. color: #ffffff;
  1332. }
  1333. /* Purple */
  1334. .ui.grid > .purple.row,
  1335. .ui.grid > .purple.column,
  1336. .ui.grid > .row > .purple.column {
  1337. background-color: #a333c8 !important;
  1338. color: #ffffff;
  1339. }
  1340. /* Pink */
  1341. .ui.grid > .pink.row,
  1342. .ui.grid > .pink.column,
  1343. .ui.grid > .row > .pink.column {
  1344. background-color: #e03997 !important;
  1345. color: #ffffff;
  1346. }
  1347. /* Brown */
  1348. .ui.grid > .brown.row,
  1349. .ui.grid > .brown.column,
  1350. .ui.grid > .row > .brown.column {
  1351. background-color: #a5673f !important;
  1352. color: #ffffff;
  1353. }
  1354. /* Grey */
  1355. .ui.grid > .grey.row,
  1356. .ui.grid > .grey.column,
  1357. .ui.grid > .row > .grey.column {
  1358. background-color: #767676 !important;
  1359. color: #ffffff;
  1360. }
  1361. /* Black */
  1362. .ui.grid > .black.row,
  1363. .ui.grid > .black.column,
  1364. .ui.grid > .row > .black.column {
  1365. background-color: #1b1c1d !important;
  1366. color: #ffffff;
  1367. }
  1368. /*----------------------
  1369. Equal Width
  1370. -----------------------*/
  1371. .ui[class*="equal width"].grid > .column:not(.row),
  1372. .ui[class*="equal width"].grid > .row > .column,
  1373. .ui.grid > [class*="equal width"].row > .column {
  1374. display: inline-block;
  1375. -webkit-box-flex: 1;
  1376. -webkit-flex-grow: 1;
  1377. -ms-flex-positive: 1;
  1378. flex-grow: 1;
  1379. }
  1380. .ui[class*="equal width"].grid > .wide.column,
  1381. .ui[class*="equal width"].grid > .row > .wide.column,
  1382. .ui.grid > [class*="equal width"].row > .wide.column {
  1383. -webkit-box-flex: 0;
  1384. -webkit-flex-grow: 0;
  1385. -ms-flex-positive: 0;
  1386. flex-grow: 0;
  1387. }
  1388. /*-------------------
  1389. Doubling
  1390. --------------------*/
  1391. /* Tablet Only */
  1392. @media only screen and (min-width: 768px) and (max-width: 991px) {
  1393. .ui.doubling.grid {
  1394. width: auto;
  1395. }
  1396. .ui.grid > .doubling.row,
  1397. .ui.doubling.grid > .row {
  1398. margin: 0em !important;
  1399. padding: 0em !important;
  1400. }
  1401. .ui.grid > .doubling.row > .column,
  1402. .ui.doubling.grid > .row > .column {
  1403. display: inline-block !important;
  1404. padding-top: 1rem !important;
  1405. padding-bottom: 1rem !important;
  1406. box-shadow: none !important;
  1407. margin: 0em;
  1408. }
  1409. .ui[class*="two column"].doubling.grid > .row > .column,
  1410. .ui[class*="two column"].doubling.grid > .column:not(.row),
  1411. .ui.grid > [class*="two column"].doubling.row.row > .column {
  1412. width: 100% !important;
  1413. }
  1414. .ui[class*="three column"].doubling.grid > .row > .column,
  1415. .ui[class*="three column"].doubling.grid > .column:not(.row),
  1416. .ui.grid > [class*="three column"].doubling.row.row > .column {
  1417. width: 50% !important;
  1418. }
  1419. .ui[class*="four column"].doubling.grid > .row > .column,
  1420. .ui[class*="four column"].doubling.grid > .column:not(.row),
  1421. .ui.grid > [class*="four column"].doubling.row.row > .column {
  1422. width: 50% !important;
  1423. }
  1424. .ui[class*="five column"].doubling.grid > .row > .column,
  1425. .ui[class*="five column"].doubling.grid > .column:not(.row),
  1426. .ui.grid > [class*="five column"].doubling.row.row > .column {
  1427. width: 33.33333333% !important;
  1428. }
  1429. .ui[class*="six column"].doubling.grid > .row > .column,
  1430. .ui[class*="six column"].doubling.grid > .column:not(.row),
  1431. .ui.grid > [class*="six column"].doubling.row.row > .column {
  1432. width: 33.33333333% !important;
  1433. }
  1434. .ui[class*="seven column"].doubling.grid > .row > .column,
  1435. .ui[class*="seven column"].doubling.grid > .column:not(.row),
  1436. .ui.grid > [class*="seven column"].doubling.row.row > .column {
  1437. width: 33.33333333% !important;
  1438. }
  1439. .ui[class*="eight column"].doubling.grid > .row > .column,
  1440. .ui[class*="eight column"].doubling.grid > .column:not(.row),
  1441. .ui.grid > [class*="eight column"].doubling.row.row > .column {
  1442. width: 25% !important;
  1443. }
  1444. .ui[class*="nine column"].doubling.grid > .row > .column,
  1445. .ui[class*="nine column"].doubling.grid > .column:not(.row),
  1446. .ui.grid > [class*="nine column"].doubling.row.row > .column {
  1447. width: 25% !important;
  1448. }
  1449. .ui[class*="ten column"].doubling.grid > .row > .column,
  1450. .ui[class*="ten column"].doubling.grid > .column:not(.row),
  1451. .ui.grid > [class*="ten column"].doubling.row.row > .column {
  1452. width: 20% !important;
  1453. }
  1454. .ui[class*="eleven column"].doubling.grid > .row > .column,
  1455. .ui[class*="eleven column"].doubling.grid > .column:not(.row),
  1456. .ui.grid > [class*="eleven column"].doubling.row.row > .column {
  1457. width: 20% !important;
  1458. }
  1459. .ui[class*="twelve column"].doubling.grid > .row > .column,
  1460. .ui[class*="twelve column"].doubling.grid > .column:not(.row),
  1461. .ui.grid > [class*="twelve column"].doubling.row.row > .column {
  1462. width: 16.66666667% !important;
  1463. }
  1464. .ui[class*="thirteen column"].doubling.grid > .row > .column,
  1465. .ui[class*="thirteen column"].doubling.grid > .column:not(.row),
  1466. .ui.grid > [class*="thirteen column"].doubling.row.row > .column {
  1467. width: 16.66666667% !important;
  1468. }
  1469. .ui[class*="fourteen column"].doubling.grid > .row > .column,
  1470. .ui[class*="fourteen column"].doubling.grid > .column:not(.row),
  1471. .ui.grid > [class*="fourteen column"].doubling.row.row > .column {
  1472. width: 14.28571429% !important;
  1473. }
  1474. .ui[class*="fifteen column"].doubling.grid > .row > .column,
  1475. .ui[class*="fifteen column"].doubling.grid > .column:not(.row),
  1476. .ui.grid > [class*="fifteen column"].doubling.row.row > .column {
  1477. width: 14.28571429% !important;
  1478. }
  1479. .ui[class*="sixteen column"].doubling.grid > .row > .column,
  1480. .ui[class*="sixteen column"].doubling.grid > .column:not(.row),
  1481. .ui.grid > [class*="sixteen column"].doubling.row.row > .column {
  1482. width: 12.5% !important;
  1483. }
  1484. }
  1485. /* Mobily Only */
  1486. @media only screen and (max-width: 767px) {
  1487. .ui.grid > .doubling.row,
  1488. .ui.doubling.grid > .row {
  1489. margin: 0em !important;
  1490. padding: 0em !important;
  1491. }
  1492. .ui.grid > .doubling.row > .column,
  1493. .ui.doubling.grid > .row > .column {
  1494. padding-top: 1rem !important;
  1495. padding-bottom: 1rem !important;
  1496. margin: 0em !important;
  1497. box-shadow: none !important;
  1498. }
  1499. .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column,
  1500. .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row),
  1501. .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column {
  1502. width: 100% !important;
  1503. }
  1504. .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column,
  1505. .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row),
  1506. .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column {
  1507. width: 50% !important;
  1508. }
  1509. .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column,
  1510. .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row),
  1511. .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column {
  1512. width: 50% !important;
  1513. }
  1514. .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column,
  1515. .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row),
  1516. .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column {
  1517. width: 50% !important;
  1518. }
  1519. .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column,
  1520. .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row),
  1521. .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column {
  1522. width: 50% !important;
  1523. }
  1524. .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column,
  1525. .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row),
  1526. .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column {
  1527. width: 50% !important;
  1528. }
  1529. .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column,
  1530. .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row),
  1531. .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column {
  1532. width: 50% !important;
  1533. }
  1534. .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column,
  1535. .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row),
  1536. .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column {
  1537. width: 33.33333333% !important;
  1538. }
  1539. .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column,
  1540. .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row),
  1541. .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column {
  1542. width: 33.33333333% !important;
  1543. }
  1544. .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
  1545. .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row),
  1546. .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column {
  1547. width: 33.33333333% !important;
  1548. }
  1549. .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
  1550. .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row),
  1551. .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column {
  1552. width: 33.33333333% !important;
  1553. }
  1554. .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
  1555. .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1556. .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column {
  1557. width: 33.33333333% !important;
  1558. }
  1559. .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
  1560. .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1561. .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column {
  1562. width: 25% !important;
  1563. }
  1564. .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
  1565. .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1566. .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column {
  1567. width: 25% !important;
  1568. }
  1569. .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
  1570. .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1571. .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column {
  1572. width: 25% !important;
  1573. }
  1574. }
  1575. /*-------------------
  1576. Stackable
  1577. --------------------*/
  1578. @media only screen and (max-width: 767px) {
  1579. .ui.stackable.grid {
  1580. width: auto;
  1581. }
  1582. .ui.stackable.grid > .row > .wide.column,
  1583. .ui.stackable.grid > .wide.column,
  1584. .ui.stackable.grid > .column.grid > .column,
  1585. .ui.stackable.grid > .column.row > .column,
  1586. .ui.stackable.grid > .row > .column,
  1587. .ui.stackable.grid > .column:not(.row),
  1588. .ui.grid > .stackable.stackable.row > .column {
  1589. width: 100% !important;
  1590. margin: 0em 0em !important;
  1591. box-shadow: none !important;
  1592. padding: 1rem 1rem !important;
  1593. }
  1594. .ui.stackable.grid:not(.vertically) > .row {
  1595. margin: 0em;
  1596. padding: 0em;
  1597. }
  1598. /* Coupling */
  1599. .ui.container > .ui.stackable.grid > .column,
  1600. .ui.container > .ui.stackable.grid > .row > .column {
  1601. padding-left: 0em !important;
  1602. padding-right: 0em !important;
  1603. }
  1604. /* Don't pad inside segment or nested grid */
  1605. .ui.grid .ui.stackable.grid,
  1606. .ui.segment:not(.vertical) .ui.stackable.page.grid {
  1607. margin-left: -1rem !important;
  1608. margin-right: -1rem !important;
  1609. }
  1610. /* Divided Stackable */
  1611. .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  1612. .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  1613. .ui.stackable.divided.grid > .column:not(.row):first-child,
  1614. .ui.stackable.celled.grid > .column:not(.row):first-child {
  1615. border-top: none !important;
  1616. }
  1617. .ui.inverted.stackable.celled.grid > .column:not(.row),
  1618. .ui.inverted.stackable.divided.grid > .column:not(.row),
  1619. .ui.inverted.stackable.celled.grid > .row > .column,
  1620. .ui.inverted.stackable.divided.grid > .row > .column {
  1621. border-top: 1px solid rgba(255, 255, 255, 0.1);
  1622. }
  1623. .ui.stackable.celled.grid > .column:not(.row),
  1624. .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
  1625. .ui.stackable.celled.grid > .row > .column,
  1626. .ui.stackable.divided:not(.vertically).grid > .row > .column {
  1627. border-top: 1px solid rgba(34, 36, 38, 0.15);
  1628. box-shadow: none !important;
  1629. padding-top: 2rem !important;
  1630. padding-bottom: 2rem !important;
  1631. }
  1632. .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
  1633. .ui.stackable.divided:not(.vertically).grid > .row > .column {
  1634. padding-left: 0em !important;
  1635. padding-right: 0em !important;
  1636. }
  1637. }
  1638. /*----------------------
  1639. Only (Device)
  1640. -----------------------*/
  1641. /* These include arbitrary class repetitions for forced specificity */
  1642. /* Mobile Only Hide */
  1643. @media only screen and (max-width: 767px) {
  1644. .ui.tablet:not(.mobile).only.grid.grid.grid,
  1645. .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile),
  1646. .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile),
  1647. .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) {
  1648. display: none !important;
  1649. }
  1650. .ui[class*="computer only"].grid.grid.grid:not(.mobile),
  1651. .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile),
  1652. .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile),
  1653. .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) {
  1654. display: none !important;
  1655. }
  1656. .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
  1657. .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  1658. .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  1659. .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
  1660. display: none !important;
  1661. }
  1662. .ui[class*="widescreen"].grid.grid.grid:not(.mobile),
  1663. .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  1664. .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  1665. .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
  1666. display: none !important;
  1667. }
  1668. }
  1669. /* Tablet Only Hide */
  1670. @media only screen and (min-width: 768px) and (max-width: 991px) {
  1671. .ui[class*="mobile only"].grid.grid.grid:not(.tablet),
  1672. .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet),
  1673. .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet),
  1674. .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) {
  1675. display: none !important;
  1676. }
  1677. .ui[class*="computer only"].grid.grid.grid:not(.tablet),
  1678. .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet),
  1679. .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet),
  1680. .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) {
  1681. display: none !important;
  1682. }
  1683. .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
  1684. .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  1685. .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  1686. .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
  1687. display: none !important;
  1688. }
  1689. .ui[class*="widescreen"].grid.grid.grid:not(.mobile),
  1690. .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  1691. .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  1692. .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
  1693. display: none !important;
  1694. }
  1695. }
  1696. /* Computer Only Hide */
  1697. @media only screen and (min-width: 992px) and (max-width: 1199px) {
  1698. .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  1699. .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  1700. .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  1701. .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
  1702. display: none !important;
  1703. }
  1704. .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  1705. .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  1706. .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  1707. .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
  1708. display: none !important;
  1709. }
  1710. .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
  1711. .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  1712. .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  1713. .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
  1714. display: none !important;
  1715. }
  1716. .ui[class*="widescreen"].grid.grid.grid:not(.mobile),
  1717. .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  1718. .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  1719. .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
  1720. display: none !important;
  1721. }
  1722. }
  1723. /* Large Screen Only Hide */
  1724. @media only screen and (min-width: 1200px) and (max-width: 1919px) {
  1725. .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  1726. .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  1727. .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  1728. .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
  1729. display: none !important;
  1730. }
  1731. .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  1732. .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  1733. .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  1734. .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
  1735. display: none !important;
  1736. }
  1737. .ui[class*="widescreen"].grid.grid.grid:not(.mobile),
  1738. .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  1739. .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  1740. .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
  1741. display: none !important;
  1742. }
  1743. }
  1744. /* Widescreen Only Hide */
  1745. @media only screen and (min-width: 1920px) {
  1746. .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  1747. .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  1748. .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  1749. .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
  1750. display: none !important;
  1751. }
  1752. .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  1753. .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  1754. .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  1755. .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
  1756. display: none !important;
  1757. }
  1758. }
  1759. /*******************************
  1760. Theme Overrides
  1761. *******************************/
  1762. /*******************************
  1763. Site Overrides
  1764. *******************************/