grid.css 68 KB

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