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.

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