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.

2033 lines
68 KiB

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