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.

2039 lines
69 KiB

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