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.

1825 lines
60 KiB

9 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
10 years ago
10 years ago
10 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
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
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
10 years ago
10 years ago
10 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
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
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
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
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
9 years ago
10 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 2.0.0 - Grid
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2015 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Standard
  13. *******************************/
  14. .ui.grid {
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: -ms-flexbox;
  18. display: flex;
  19. -webkit-box-orient: horizontal;
  20. -webkit-box-direction: normal;
  21. -webkit-flex-direction: row;
  22. -ms-flex-direction: row;
  23. flex-direction: row;
  24. -webkit-flex-wrap: wrap;
  25. -ms-flex-wrap: wrap;
  26. flex-wrap: wrap;
  27. -webkit-box-align: stretch;
  28. -webkit-align-items: stretch;
  29. -ms-flex-align: stretch;
  30. align-items: stretch;
  31. padding: 0em;
  32. }
  33. /*----------------------
  34. Remove Gutters
  35. -----------------------*/
  36. .ui.grid {
  37. margin-top: -1rem;
  38. margin-bottom: -1rem;
  39. margin-left: -1rem;
  40. margin-right: -1rem;
  41. }
  42. .ui.relaxed.grid {
  43. margin-left: -1.5rem;
  44. margin-right: -1.5rem;
  45. }
  46. .ui[class*="very relaxed"].grid {
  47. margin-left: -2.5rem;
  48. margin-right: -2.5rem;
  49. }
  50. /* Collapse Margins on Consecutive Grids */
  51. .ui.grid + .grid {
  52. margin-top: 0rem;
  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. /* Top level grid doesn't use negative margin */
  124. body > .ui.grid {
  125. margin: 0em;
  126. }
  127. /* Collapse Margin on Consecutive Grid */
  128. .ui.grid > .ui.grid:first-child {
  129. margin-top: 0em;
  130. }
  131. .ui.grid > .ui.grid:last-child {
  132. margin-bottom: 0em;
  133. }
  134. /* Segment inside Aligned Grid */
  135. .ui.grid .aligned.row > .column > .segment:not(.compact),
  136. .ui.aligned.grid .column > .segment:not(.compact) {
  137. width: 100%;
  138. }
  139. /* Align Dividers with Gutter */
  140. .ui.grid .row + .ui.divider {
  141. -webkit-box-flex: 1;
  142. -webkit-flex-grow: 1;
  143. -ms-flex-positive: 1;
  144. flex-grow: 1;
  145. margin: 1rem 1rem;
  146. }
  147. .ui.grid .column + .ui.vertical.divider {
  148. height: calc(50% - 1rem );
  149. }
  150. /* Remove Border on Last Horizontal Segment */
  151. .ui.grid > .row > .column:last-child > .horizontal.segment,
  152. .ui.grid > .column:last-child > .horizontal.segment {
  153. box-shadow: none;
  154. }
  155. /*******************************
  156. Variations
  157. *******************************/
  158. /*-----------------------
  159. Page Grid
  160. -------------------------*/
  161. @media only screen and (max-width: 767px) {
  162. .ui.page.grid {
  163. width: auto;
  164. padding-left: 0em;
  165. padding-right: 0em;
  166. margin-left: 0em;
  167. margin-right: 0em;
  168. }
  169. }
  170. @media only screen and (min-width: 768px) and (max-width: 991px) {
  171. .ui.page.grid {
  172. width: auto;
  173. margin-left: 0em;
  174. margin-right: 0em;
  175. padding-left: 2em;
  176. padding-right: 2em;
  177. }
  178. }
  179. @media only screen and (min-width: 992px) and (max-width: 1399px) {
  180. .ui.page.grid {
  181. width: auto;
  182. margin-left: 0em;
  183. margin-right: 0em;
  184. padding-left: 3%;
  185. padding-right: 3%;
  186. }
  187. }
  188. @media only screen and (min-width: 1400px) and (max-width: 1919px) {
  189. .ui.page.grid {
  190. width: auto;
  191. margin-left: 0em;
  192. margin-right: 0em;
  193. padding-left: 15%;
  194. padding-right: 15%;
  195. }
  196. }
  197. @media only screen and (min-width: 1920px) {
  198. .ui.page.grid {
  199. width: auto;
  200. margin-left: 0em;
  201. margin-right: 0em;
  202. padding-left: 23%;
  203. padding-right: 23%;
  204. }
  205. }
  206. /*-------------------
  207. Column Count
  208. --------------------*/
  209. /* Assume full width with one column */
  210. .ui.grid > .column:only-child,
  211. .ui.grid > .row > .column:only-child {
  212. width: 100%;
  213. }
  214. /* Grid Based */
  215. .ui[class*="one column"].grid > .row > .column,
  216. .ui[class*="one column"].grid > .column:not(.row) {
  217. width: 100%;
  218. }
  219. .ui[class*="two column"].grid > .row > .column,
  220. .ui[class*="two column"].grid > .column:not(.row) {
  221. width: 50%;
  222. }
  223. .ui[class*="three column"].grid > .row > .column,
  224. .ui[class*="three column"].grid > .column:not(.row) {
  225. width: 33.33333333%;
  226. }
  227. .ui[class*="four column"].grid > .row > .column,
  228. .ui[class*="four column"].grid > .column:not(.row) {
  229. width: 25%;
  230. }
  231. .ui[class*="five column"].grid > .row > .column,
  232. .ui[class*="five column"].grid > .column:not(.row) {
  233. width: 20%;
  234. }
  235. .ui[class*="six column"].grid > .row > .column,
  236. .ui[class*="six column"].grid > .column:not(.row) {
  237. width: 16.66666667%;
  238. }
  239. .ui[class*="seven column"].grid > .row > .column,
  240. .ui[class*="seven column"].grid > .column:not(.row) {
  241. width: 14.28571429%;
  242. }
  243. .ui[class*="eight column"].grid > .row > .column,
  244. .ui[class*="eight column"].grid > .column:not(.row) {
  245. width: 12.5%;
  246. }
  247. .ui[class*="nine column"].grid > .row > .column,
  248. .ui[class*="nine column"].grid > .column:not(.row) {
  249. width: 11.11111111%;
  250. }
  251. .ui[class*="ten column"].grid > .row > .column,
  252. .ui[class*="ten column"].grid > .column:not(.row) {
  253. width: 10%;
  254. }
  255. .ui[class*="eleven column"].grid > .row > .column,
  256. .ui[class*="eleven column"].grid > .column:not(.row) {
  257. width: 9.09090909%;
  258. }
  259. .ui[class*="twelve column"].grid > .row > .column,
  260. .ui[class*="twelve column"].grid > .column:not(.row) {
  261. width: 8.33333333%;
  262. }
  263. .ui[class*="thirteen column"].grid > .row > .column,
  264. .ui[class*="thirteen column"].grid > .column:not(.row) {
  265. width: 7.69230769%;
  266. }
  267. .ui[class*="fourteen column"].grid > .row > .column,
  268. .ui[class*="fourteen column"].grid > .column:not(.row) {
  269. width: 7.14285714%;
  270. }
  271. .ui[class*="fifteen column"].grid > .row > .column,
  272. .ui[class*="fifteen column"].grid > .column:not(.row) {
  273. width: 6.66666667%;
  274. }
  275. .ui[class*="sixteen column"].grid > .row > .column,
  276. .ui[class*="sixteen column"].grid > .column:not(.row) {
  277. width: 6.25%;
  278. }
  279. /* Row Based Overrides */
  280. .ui.grid > [class*="one column"].row > .column {
  281. width: 100% !important;
  282. }
  283. .ui.grid > [class*="two column"].row > .column {
  284. width: 50% !important;
  285. }
  286. .ui.grid > [class*="three column"].row > .column {
  287. width: 33.33333333% !important;
  288. }
  289. .ui.grid > [class*="four column"].row > .column {
  290. width: 25% !important;
  291. }
  292. .ui.grid > [class*="five column"].row > .column {
  293. width: 20% !important;
  294. }
  295. .ui.grid > [class*="six column"].row > .column {
  296. width: 16.66666667% !important;
  297. }
  298. .ui.grid > [class*="seven column"].row > .column {
  299. width: 14.28571429% !important;
  300. }
  301. .ui.grid > [class*="eight column"].row > .column {
  302. width: 12.5% !important;
  303. }
  304. .ui.grid > [class*="nine column"].row > .column {
  305. width: 11.11111111% !important;
  306. }
  307. .ui.grid > [class*="ten column"].row > .column {
  308. width: 10% !important;
  309. }
  310. .ui.grid > [class*="eleven column"].row > .column {
  311. width: 9.09090909% !important;
  312. }
  313. .ui.grid > [class*="twelve column"].row > .column {
  314. width: 8.33333333% !important;
  315. }
  316. .ui.grid > [class*="thirteen column"].row > .column {
  317. width: 7.69230769% !important;
  318. }
  319. .ui.grid > [class*="fourteen column"].row > .column {
  320. width: 7.14285714% !important;
  321. }
  322. .ui.grid > [class*="fifteen column"].row > .column {
  323. width: 6.66666667% !important;
  324. }
  325. .ui.grid > [class*="sixteen column"].row > .column {
  326. width: 6.25% !important;
  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: 1400px) 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(.row),
  939. .ui.centered.grid > .row > .column:not(.aligned),
  940. .ui.grid .centered.row > .column:not(.aligned) {
  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. padding-top: 0em;
  1017. padding-bottom: 0em;
  1018. }
  1019. /* No divider on first column on row */
  1020. .ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
  1021. .ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
  1022. box-shadow: none;
  1023. }
  1024. /* Divided Row */
  1025. .ui.grid > .divided.row > .column {
  1026. box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
  1027. }
  1028. .ui.grid > .divided.row > .column:first-child {
  1029. box-shadow: none;
  1030. }
  1031. /* Vertically Divided */
  1032. .ui[class*="vertically divided"].grid > .row {
  1033. position: relative;
  1034. }
  1035. .ui[class*="vertically divided"].grid > .row:before {
  1036. position: absolute;
  1037. content: "";
  1038. top: 0em;
  1039. left: 0px;
  1040. width: calc(100% - 2rem );
  1041. height: 1px;
  1042. margin: 0% 1rem;
  1043. box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15);
  1044. }
  1045. /* Padded Horizontally Divided */
  1046. [class*="horizontally padded"].ui.divided.grid,
  1047. .ui.padded.divided.grid:not(.vertically):not(.horizontally) {
  1048. width: 100%;
  1049. }
  1050. /* First Row Vertically Divided */
  1051. .ui[class*="vertically divided"].grid > .row:first-child:before {
  1052. box-shadow: none;
  1053. }
  1054. /* Inverted Divided */
  1055. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
  1056. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column {
  1057. box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1);
  1058. }
  1059. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child,
  1060. .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
  1061. box-shadow: none;
  1062. }
  1063. .ui.inverted[class*="vertically divided"].grid > .row:before {
  1064. box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
  1065. }
  1066. /* Relaxed */
  1067. .ui.relaxed[class*="vertically divided"].grid > .row:before {
  1068. margin-left: 1.5rem;
  1069. margin-right: 1.5rem;
  1070. width: calc(100% - 3rem );
  1071. }
  1072. .ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
  1073. margin-left: 5rem;
  1074. margin-right: 5rem;
  1075. width: calc(100% - 5rem );
  1076. }
  1077. /*----------------------
  1078. Celled
  1079. -----------------------*/
  1080. .ui.celled.grid {
  1081. width: 100%;
  1082. margin: 1em 0em;
  1083. box-shadow: 0px 0px 0px 1px #d4d4d5;
  1084. }
  1085. .ui.celled.grid > .row,
  1086. .ui.celled.grid > .column.row,
  1087. .ui.celled.grid > .column.row:first-child {
  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.page.grid {
  1102. box-shadow: none;
  1103. }
  1104. .ui.celled.grid > .column:not(.row),
  1105. .ui.celled.grid > .row > .column {
  1106. padding: 0.75em;
  1107. }
  1108. .ui.relaxed.celled.grid > .column:not(.row),
  1109. .ui.relaxed.celled.grid > .row > .column {
  1110. padding: 1em;
  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. box-shadow: none;
  1119. margin: 0em;
  1120. }
  1121. .ui[class*="internally celled"].grid > .row:first-child {
  1122. box-shadow: none;
  1123. }
  1124. .ui[class*="internally celled"].grid > .row > .column:first-child {
  1125. box-shadow: none;
  1126. }
  1127. /*----------------------
  1128. Vertically Aligned
  1129. -----------------------*/
  1130. /* Top Aligned */
  1131. .ui[class*="top aligned"].grid .column:not(.row),
  1132. .ui.grid > [class*="top aligned"].row > .column,
  1133. .ui.grid > [class*="top aligned"].column:not(.row),
  1134. .ui.grid > .row > [class*="top aligned"].column {
  1135. -webkit-box-orient: vertical;
  1136. -webkit-box-direction: normal;
  1137. -webkit-flex-direction: column;
  1138. -ms-flex-direction: column;
  1139. flex-direction: column;
  1140. vertical-align: top;
  1141. -webkit-align-self: flex-start !important;
  1142. -ms-flex-item-align: start !important;
  1143. align-self: flex-start !important;
  1144. }
  1145. /* Middle Aligned */
  1146. .ui[class*="middle aligned"].grid .column:not(.row),
  1147. .ui.grid > [class*="middle aligned"].row > .column,
  1148. .ui.grid > [class*="middle aligned"].column:not(.row),
  1149. .ui.grid > .row > [class*="middle aligned"].column {
  1150. -webkit-box-orient: vertical;
  1151. -webkit-box-direction: normal;
  1152. -webkit-flex-direction: column;
  1153. -ms-flex-direction: column;
  1154. flex-direction: column;
  1155. vertical-align: middle;
  1156. -webkit-align-self: center !important;
  1157. -ms-flex-item-align: center !important;
  1158. align-self: center !important;
  1159. }
  1160. /* Bottom Aligned */
  1161. .ui[class*="bottom aligned"].grid .column:not(.row),
  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:not(.row),
  1209. .ui.grid > [class*="left aligned"].row > .column,
  1210. .ui.grid > [class*="left aligned"].column:not(.row),
  1211. .ui.grid > .row > [class*="left aligned"].column {
  1212. text-align: left;
  1213. -webkit-align-self: inherit;
  1214. -ms-flex-item-align: inherit;
  1215. align-self: inherit;
  1216. }
  1217. /* Center Aligned */
  1218. .ui[class*="center aligned"].grid,
  1219. .ui[class*="center aligned"].grid .column:not(.row),
  1220. .ui.grid > [class*="center aligned"].row > .column,
  1221. .ui.grid > [class*="center aligned"].column:not(.row),
  1222. .ui.grid > .row > [class*="center aligned"].column {
  1223. text-align: center;
  1224. -webkit-align-self: inherit;
  1225. -ms-flex-item-align: inherit;
  1226. align-self: inherit;
  1227. }
  1228. .ui[class*="center aligned"].grid {
  1229. -webkit-box-pack: center;
  1230. -webkit-justify-content: center;
  1231. -ms-flex-pack: center;
  1232. justify-content: center;
  1233. }
  1234. /* Right Aligned */
  1235. .ui[class*="right aligned"].grid .column:not(.row),
  1236. .ui.grid > [class*="right aligned"].row > .column,
  1237. .ui.grid > [class*="right aligned"].column:not(.row),
  1238. .ui.grid > .row > [class*="right aligned"].column {
  1239. text-align: right;
  1240. -webkit-align-self: inherit;
  1241. -ms-flex-item-align: inherit;
  1242. align-self: inherit;
  1243. }
  1244. /* Justified */
  1245. .ui.justified.grid,
  1246. .ui.justified.grid > .row > .column,
  1247. .ui.justified.grid > .column,
  1248. .ui.grid .justified.column,
  1249. .ui.grid > .justified.row > .column {
  1250. text-align: justify;
  1251. -webkit-hyphens: auto;
  1252. -moz-hyphens: auto;
  1253. -ms-hyphens: auto;
  1254. hyphens: auto;
  1255. }
  1256. .ui.grid .justified.column {
  1257. text-align: justify !important;
  1258. -webkit-hyphens: auto !important;
  1259. -moz-hyphens: auto !important;
  1260. -ms-hyphens: auto !important;
  1261. hyphens: auto !important;
  1262. }
  1263. /*----------------------
  1264. Colored
  1265. -----------------------*/
  1266. .ui.grid > .white.row,
  1267. .ui.grid > .white.column,
  1268. .ui.grid > .row > .white.column {
  1269. background-color: #ffffff !important;
  1270. color: rgba(0, 0, 0, 0.87);
  1271. }
  1272. .ui.grid > .row > .white.column {
  1273. margin-top: -1rem;
  1274. margin-bottom: -1rem;
  1275. padding-top: 1rem;
  1276. padding-bottom: 1rem;
  1277. }
  1278. .ui.grid > .black.row,
  1279. .ui.grid > .black.column,
  1280. .ui.grid > .row > .black.column {
  1281. background-color: #1b1c1d !important;
  1282. color: #ffffff;
  1283. }
  1284. .ui.grid > .row > .black.column {
  1285. margin-top: -1rem;
  1286. margin-bottom: -1rem;
  1287. padding-top: 1rem;
  1288. padding-bottom: 1rem;
  1289. }
  1290. .ui.grid > .blue.row,
  1291. .ui.grid > .blue.column,
  1292. .ui.grid > .row > .blue.column {
  1293. background-color: #2185d0 !important;
  1294. color: #ffffff;
  1295. }
  1296. .ui.grid > .row > .blue.column {
  1297. margin-top: -1rem;
  1298. margin-bottom: -1rem;
  1299. padding-top: 1rem;
  1300. padding-bottom: 1rem;
  1301. }
  1302. .ui.grid > .green.row,
  1303. .ui.grid > .green.column,
  1304. .ui.grid > .row > .green.column {
  1305. background-color: #21ba45 !important;
  1306. color: #ffffff;
  1307. }
  1308. .ui.grid > .row > .green.column {
  1309. margin-top: -1rem;
  1310. margin-bottom: -1rem;
  1311. padding-top: 1rem;
  1312. padding-bottom: 1rem;
  1313. }
  1314. .ui.grid > .orange.row,
  1315. .ui.grid > .orange.column,
  1316. .ui.grid > .row > .orange.column {
  1317. background-color: #f2711c !important;
  1318. color: #ffffff;
  1319. }
  1320. .ui.grid > .row > .orange.column {
  1321. margin-top: -1rem;
  1322. margin-bottom: -1rem;
  1323. padding-top: 1rem;
  1324. padding-bottom: 1rem;
  1325. }
  1326. .ui.grid > .pink.row,
  1327. .ui.grid .pink.column {
  1328. background-color: #e03997 !important;
  1329. color: #ffffff;
  1330. }
  1331. .ui.grid > .row > .pink.column {
  1332. margin-top: -1rem;
  1333. margin-bottom: -1rem;
  1334. padding-top: 1rem;
  1335. padding-bottom: 1rem;
  1336. }
  1337. .ui.grid > .purple.row,
  1338. .ui.grid > .purple.column,
  1339. .ui.grid > .row > .purple.column {
  1340. background-color: #6a33c8 !important;
  1341. color: #ffffff;
  1342. }
  1343. .ui.grid > .row > .purple.column {
  1344. margin-top: -1rem;
  1345. margin-bottom: -1rem;
  1346. padding-top: 1rem;
  1347. padding-bottom: 1rem;
  1348. }
  1349. .ui.grid > .red.row,
  1350. .ui.grid > .red.column,
  1351. .ui.grid > .row > .red.column {
  1352. background-color: #db2828 !important;
  1353. color: #ffffff;
  1354. }
  1355. .ui.grid > .row > .red.column {
  1356. margin-top: -1rem;
  1357. margin-bottom: -1rem;
  1358. padding-top: 1rem;
  1359. padding-bottom: 1rem;
  1360. }
  1361. .ui.grid > .teal.row,
  1362. .ui.grid > .teal.column,
  1363. .ui.grid > .row > .teal.column {
  1364. background-color: #00b5ad !important;
  1365. color: #ffffff;
  1366. }
  1367. .ui.grid > .row > .teal.column {
  1368. margin-top: -1rem;
  1369. margin-bottom: -1rem;
  1370. padding-top: 1rem;
  1371. padding-bottom: 1rem;
  1372. }
  1373. .ui.grid > .yellow.row,
  1374. .ui.grid > .yellow.column,
  1375. .ui.grid > .row > .yellow.column {
  1376. background-color: #fbbd08 !important;
  1377. color: #ffffff;
  1378. }
  1379. .ui.grid > .row > .yellow.column {
  1380. margin-top: -1rem;
  1381. margin-bottom: -1rem;
  1382. padding-top: 1rem;
  1383. padding-bottom: 1rem;
  1384. }
  1385. /*----------------------
  1386. Equal Width
  1387. -----------------------*/
  1388. .ui[class*="equal width"].grid > .column:not(.row),
  1389. .ui[class*="equal width"].grid > .row > .column,
  1390. .ui.grid > [class*="equal width"].row > .column {
  1391. display: inline-block;
  1392. -webkit-box-flex: 1;
  1393. -webkit-flex-grow: 1;
  1394. -ms-flex-positive: 1;
  1395. flex-grow: 1;
  1396. }
  1397. .ui[class*="equal width"].grid > .wide.column,
  1398. .ui[class*="equal width"].grid > .row > .wide.column,
  1399. .ui.grid > [class*="equal width"].row > .wide.column {
  1400. -webkit-box-flex: 0;
  1401. -webkit-flex-grow: 0;
  1402. -ms-flex-positive: 0;
  1403. flex-grow: 0;
  1404. }
  1405. /*-------------------
  1406. Doubling
  1407. --------------------*/
  1408. /* Tablet Only */
  1409. @media only screen and (min-width: 768px) and (max-width: 991px) {
  1410. .ui.doubling.grid {
  1411. width: 100% !important;
  1412. }
  1413. .ui.grid > .doubling.row,
  1414. .ui.doubling.grid > .row {
  1415. margin: 0em !important;
  1416. padding: 0em !important;
  1417. }
  1418. .ui.grid > .doubling.row > .column,
  1419. .ui.doubling.grid > .row > .column {
  1420. display: inline-block !important;
  1421. padding-top: 1rem !important;
  1422. padding-bottom: 1rem !important;
  1423. box-shadow: none !important;
  1424. margin: 0em;
  1425. }
  1426. .ui[class*="two column"].doubling.grid > .row > .column,
  1427. .ui[class*="two column"].doubling.grid > .column:not(.row),
  1428. .ui.grid > [class*="two column"].doubling.row.row > .column {
  1429. width: 100% !important;
  1430. }
  1431. .ui[class*="three column"].doubling.grid > .row > .column,
  1432. .ui[class*="three column"].doubling.grid > .column:not(.row),
  1433. .ui.grid > [class*="three column"].doubling.row.row > .column {
  1434. width: 50% !important;
  1435. }
  1436. .ui[class*="four column"].doubling.grid > .row > .column,
  1437. .ui[class*="four column"].doubling.grid > .column:not(.row),
  1438. .ui.grid > [class*="four column"].doubling.row.row > .column {
  1439. width: 50% !important;
  1440. }
  1441. .ui[class*="five column"].doubling.grid > .row > .column,
  1442. .ui[class*="five column"].doubling.grid > .column:not(.row),
  1443. .ui.grid > [class*="five column"].doubling.row.row > .column {
  1444. width: 33.33333333% !important;
  1445. }
  1446. .ui[class*="six column"].doubling.grid > .row > .column,
  1447. .ui[class*="six column"].doubling.grid > .column:not(.row),
  1448. .ui.grid > [class*="six column"].doubling.row.row > .column {
  1449. width: 33.33333333% !important;
  1450. }
  1451. .ui[class*="seven column"].doubling.grid > .row > .column,
  1452. .ui[class*="seven column"].doubling.grid > .column:not(.row),
  1453. .ui.grid > [class*="seven column"].doubling.row.row > .column {
  1454. width: 33.33333333% !important;
  1455. }
  1456. .ui[class*="eight column"].doubling.grid > .row > .column,
  1457. .ui[class*="eight column"].doubling.grid > .column:not(.row),
  1458. .ui.grid > [class*="eight column"].doubling.row.row > .column {
  1459. width: 25% !important;
  1460. }
  1461. .ui[class*="nine column"].doubling.grid > .row > .column,
  1462. .ui[class*="nine column"].doubling.grid > .column:not(.row),
  1463. .ui.grid > [class*="nine column"].doubling.row.row > .column {
  1464. width: 25% !important;
  1465. }
  1466. .ui[class*="ten column"].doubling.grid > .row > .column,
  1467. .ui[class*="ten column"].doubling.grid > .column:not(.row),
  1468. .ui.grid > [class*="ten column"].doubling.row.row > .column {
  1469. width: 20% !important;
  1470. }
  1471. .ui[class*="eleven column"].doubling.grid > .row > .column,
  1472. .ui[class*="eleven column"].doubling.grid > .column:not(.row),
  1473. .ui.grid > [class*="eleven column"].doubling.row.row > .column {
  1474. width: 20% !important;
  1475. }
  1476. .ui[class*="twelve column"].doubling.grid > .row > .column,
  1477. .ui[class*="twelve column"].doubling.grid > .column:not(.row),
  1478. .ui.grid > [class*="twelve column"].doubling.row.row > .column {
  1479. width: 16.66666667% !important;
  1480. }
  1481. .ui[class*="thirteen column"].doubling.grid > .row > .column,
  1482. .ui[class*="thirteen column"].doubling.grid > .column:not(.row),
  1483. .ui.grid > [class*="thirteen column"].doubling.row.row > .column {
  1484. width: 16.66666667% !important;
  1485. }
  1486. .ui[class*="fourteen column"].doubling.grid > .row > .column,
  1487. .ui[class*="fourteen column"].doubling.grid > .column:not(.row),
  1488. .ui.grid > [class*="fourteen column"].doubling.row.row > .column {
  1489. width: 14.28571429% !important;
  1490. }
  1491. .ui[class*="fifteen column"].doubling.grid > .row > .column,
  1492. .ui[class*="fifteen column"].doubling.grid > .column:not(.row),
  1493. .ui.grid > [class*="fifteen column"].doubling.row.row > .column {
  1494. width: 14.28571429% !important;
  1495. }
  1496. .ui[class*="sixteen column"].doubling.grid > .row > .column,
  1497. .ui[class*="sixteen column"].doubling.grid > .column:not(.row),
  1498. .ui.grid > [class*="sixteen column"].doubling.row.row > .column {
  1499. width: 12.5% !important;
  1500. }
  1501. }
  1502. /* Mobily Only */
  1503. @media only screen and (max-width: 767px) {
  1504. .ui.grid > .doubling.row,
  1505. .ui.doubling.grid > .row {
  1506. display: block !important;
  1507. margin: 0em !important;
  1508. padding: 0em !important;
  1509. }
  1510. .ui.grid > .doubling.row > .column,
  1511. .ui.doubling.grid > .row > .column {
  1512. display: inline-block !important;
  1513. padding-top: 1rem !important;
  1514. padding-bottom: 1rem !important;
  1515. margin: 0em !important;
  1516. box-shadow: none !important;
  1517. }
  1518. .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column,
  1519. .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row),
  1520. .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column {
  1521. width: 100% !important;
  1522. }
  1523. .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column,
  1524. .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row),
  1525. .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column {
  1526. width: 50% !important;
  1527. }
  1528. .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column,
  1529. .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row),
  1530. .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column {
  1531. width: 50% !important;
  1532. }
  1533. .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column,
  1534. .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row),
  1535. .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column {
  1536. width: 50% !important;
  1537. }
  1538. .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column,
  1539. .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row),
  1540. .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column {
  1541. width: 50% !important;
  1542. }
  1543. .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column,
  1544. .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row),
  1545. .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column {
  1546. width: 50% !important;
  1547. }
  1548. .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column,
  1549. .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row),
  1550. .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column {
  1551. width: 50% !important;
  1552. }
  1553. .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column,
  1554. .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row),
  1555. .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column {
  1556. width: 33.33333333% !important;
  1557. }
  1558. .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column,
  1559. .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row),
  1560. .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column {
  1561. width: 33.33333333% !important;
  1562. }
  1563. .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
  1564. .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row),
  1565. .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column {
  1566. width: 33.33333333% !important;
  1567. }
  1568. .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
  1569. .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row),
  1570. .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column {
  1571. width: 33.33333333% !important;
  1572. }
  1573. .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
  1574. .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1575. .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column {
  1576. width: 33.33333333% !important;
  1577. }
  1578. .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
  1579. .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1580. .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column {
  1581. width: 25% !important;
  1582. }
  1583. .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
  1584. .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1585. .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column {
  1586. width: 25% !important;
  1587. }
  1588. .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
  1589. .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row),
  1590. .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column {
  1591. width: 25% !important;
  1592. }
  1593. }
  1594. /*-------------------
  1595. Stackable
  1596. --------------------*/
  1597. @media only screen and (max-width: 767px) {
  1598. .ui.stackable.grid {
  1599. display: block !important;
  1600. width: auto;
  1601. margin-left: 0em !important;
  1602. margin-right: 0em !important;
  1603. padding: 0em;
  1604. }
  1605. .ui.stackable.grid > .row > .wide.column,
  1606. .ui.stackable.grid > .wide.column,
  1607. .ui.stackable.grid > .column.grid > .column,
  1608. .ui.stackable.grid > .column.row > .column,
  1609. .ui.stackable.grid > .row > .column,
  1610. .ui.stackable.grid > .column:not(.row) {
  1611. display: block !important;
  1612. width: auto !important;
  1613. margin: 0em 0em !important;
  1614. box-shadow: none !important;
  1615. float: none !important;
  1616. padding: 1rem 1rem !important;
  1617. }
  1618. .ui.stackable.grid > .row {
  1619. display: block !important;
  1620. margin: 0em;
  1621. padding: 0em;
  1622. }
  1623. /* Coupling */
  1624. .ui.container > .ui.stackable.grid > .column,
  1625. .ui.container > .ui.stackable.grid > .row > .column {
  1626. padding-left: 0em !important;
  1627. padding-right: 0em !important;
  1628. }
  1629. /* Don't pad inside segment or nested grid */
  1630. .ui.grid .ui.stackable.grid,
  1631. .ui.segment:not(.vertical) .ui.stackable.page.grid {
  1632. margin-left: -1rem !important;
  1633. margin-right: -1rem !important;
  1634. }
  1635. /* Equal Height Stackable */
  1636. .ui[class*="equal height"].stackable.page.grid {
  1637. display: block !important;
  1638. }
  1639. /* Divided Stackable */
  1640. .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  1641. .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  1642. .ui.stackable.divided.grid > .column:not(.row):first-child,
  1643. .ui.stackable.celled.grid > .column:not(.row):first-child {
  1644. border-top: none !important;
  1645. }
  1646. .ui.inverted.stackable.celled.grid > .column:not(.row),
  1647. .ui.inverted.stackable.divided.grid > .column:not(.row),
  1648. .ui.inverted.stackable.celled.grid > .row > .column,
  1649. .ui.inverted.stackable.divided.grid > .row > .column {
  1650. border-top: 1px solid rgba(255, 255, 255, 0.1);
  1651. }
  1652. .ui.stackable.celled.grid > .column:not(.row),
  1653. .ui.stackable.divided.grid > .column:not(.row),
  1654. .ui.stackable.celled.grid > .row > .column,
  1655. .ui.stackable.divided.grid > .row > .column {
  1656. border-top: 1px solid rgba(34, 36, 38, 0.15);
  1657. box-shadow: none !important;
  1658. padding-top: 2rem !important;
  1659. padding-bottom: 2rem !important;
  1660. }
  1661. .ui.stackable.celled.grid > .column:not(.row):first-child,
  1662. .ui.stackable.divided.grid > .column:not(.row):first-child,
  1663. .ui.stackable.celled.grid > .row > .column:first-child,
  1664. .ui.stackable.divided.grid > .row > .column:first-child {
  1665. padding-top: 0em !important;
  1666. }
  1667. }
  1668. /*----------------------
  1669. Only (Device)
  1670. -----------------------*/
  1671. /* These include arbitrary class repetitions for forced specificity */
  1672. /* Mobile Only Hide */
  1673. @media only screen and (max-width: 767px) {
  1674. .ui.tablet:not(.mobile).only.grid.grid.grid,
  1675. .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile),
  1676. .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile),
  1677. .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) {
  1678. display: none !important;
  1679. }
  1680. .ui[class*="computer only"].grid.grid.grid:not(.mobile),
  1681. .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile),
  1682. .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile),
  1683. .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) {
  1684. display: none !important;
  1685. }
  1686. }
  1687. /* Tablet Only Hide */
  1688. @media only screen and (min-width: 768px) and (max-width: 991px) {
  1689. .ui[class*="mobile only"].grid.grid.grid:not(.tablet),
  1690. .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet),
  1691. .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet),
  1692. .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) {
  1693. display: none !important;
  1694. }
  1695. .ui[class*="computer only"].grid.grid.grid:not(.tablet),
  1696. .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet),
  1697. .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet),
  1698. .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) {
  1699. display: none !important;
  1700. }
  1701. }
  1702. /* Computer Only Hide */
  1703. @media only screen and (min-width: 992px) {
  1704. .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  1705. .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  1706. .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  1707. .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
  1708. display: none !important;
  1709. }
  1710. .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  1711. .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  1712. .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  1713. .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
  1714. display: none !important;
  1715. }
  1716. }
  1717. /*******************************
  1718. Theme Overrides
  1719. *******************************/
  1720. /*******************************
  1721. Site Overrides
  1722. *******************************/