grid.css 65 KB

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