You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

565 lines
14 KiB

  1. /*
  2. * # Semantic - Grid
  3. * http://github.com/jlukic/semantic-ui/
  4. *
  5. *
  6. * Copyright 2013 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Grid
  13. *******************************/
  14. .ui.grid {
  15. display: block;
  16. text-align: right;
  17. font-size: 0em;
  18. margin: 0% -1.5%;
  19. padding: 0%;
  20. -webkit-box-sizing: border-box;
  21. -moz-box-sizing: border-box;
  22. -ms-box-sizing: border-box;
  23. box-sizing: border-box;
  24. }
  25. body > .ui.grid {
  26. margin-right: 0%;
  27. margin-left: 0%;
  28. }
  29. .ui.grid:after,
  30. .ui.row:after {
  31. content: ".";
  32. display: block;
  33. height: 0;
  34. clear: both;
  35. visibility: hidden;
  36. }
  37. /*-------------------
  38. Columns
  39. --------------------*/
  40. .ui.grid > .column,
  41. .ui.grid > .row > .column {
  42. display: inline-block;
  43. text-align: right;
  44. font-size: 1rem;
  45. padding-right: 1.5%;
  46. padding-left: 1.5%;
  47. -webkit-box-sizing: border-box;
  48. -moz-box-sizing: border-box;
  49. -ms-box-sizing: border-box;
  50. box-sizing: border-box;
  51. vertical-align: top;
  52. }
  53. /*-------------------
  54. Rows
  55. --------------------*/
  56. .ui.grid > .row {
  57. display: block;
  58. width: 100% !important;
  59. margin-top: 1.5%;
  60. padding: 1.5% 0% 0%;
  61. font-size: 0rem;
  62. }
  63. .ui.grid > .row:first-child {
  64. padding-top: 0rem;
  65. margin-top: 0rem;
  66. }
  67. /*-------------------
  68. Content
  69. --------------------*/
  70. .ui.grid > .row > img,
  71. .ui.grid > .row > .column > img {
  72. max-width: 100%;
  73. }
  74. .ui.grid .column > .ui.segment:only-child {
  75. margin: 0em;
  76. }
  77. /*******************************
  78. Variations
  79. *******************************/
  80. /*-----------------------
  81. Page Grid (Responsive)
  82. -------------------------*/
  83. .ui.page.grid {
  84. min-width: 320px;
  85. margin-right: 0%;
  86. margin-left: 0%;
  87. }
  88. @media only screen and (max-width: 998px) {
  89. .ui.page.grid {
  90. padding: 0% 4%;
  91. }
  92. }
  93. @media only screen and (min-width: 998px) {
  94. .ui.page.grid {
  95. padding: 0% 8%;
  96. }
  97. }
  98. @media only screen and (min-width: 1500px) {
  99. .ui.page.grid {
  100. padding: 0% 13%;
  101. }
  102. }
  103. @media only screen and (min-width: 1750px) {
  104. .ui.page.grid {
  105. padding: 0% 18%;
  106. }
  107. }
  108. @media only screen and (min-width: 2000px) {
  109. .ui.page.grid {
  110. padding: 0% 23%;
  111. }
  112. }
  113. /*-------------------
  114. Column Width
  115. --------------------*/
  116. /* Sizing Combinations */
  117. .ui.grid .one.wide.column {
  118. width: 6.25%;
  119. }
  120. .ui.grid .two.wide.column {
  121. width: 12.5%;
  122. }
  123. .ui.grid .three.wide.column {
  124. width: 18.75%;
  125. }
  126. .ui.grid .four.wide.column {
  127. width: 25%;
  128. }
  129. .ui.grid .five.wide.column {
  130. width: 31.25%;
  131. }
  132. .ui.grid .six.wide.column {
  133. width: 37.5%;
  134. }
  135. .ui.grid .seven.wide.column {
  136. width: 43.75%;
  137. }
  138. .ui.grid .eight.wide.column {
  139. width: 50%;
  140. }
  141. .ui.grid .nine.wide.column {
  142. width: 56.25%;
  143. }
  144. .ui.grid .ten.wide.column {
  145. width: 62.5%;
  146. }
  147. .ui.grid .eleven.wide.column {
  148. width: 68.75%;
  149. }
  150. .ui.grid .twelve.wide.column {
  151. width: 75%;
  152. }
  153. .ui.grid .thirteen.wide.column {
  154. width: 81.25%;
  155. }
  156. .ui.grid .fourteen.wide.column {
  157. width: 87.5%;
  158. }
  159. .ui.grid .fifteen.wide.column {
  160. width: 93.75%;
  161. }
  162. .ui.grid .sixteen.wide.column {
  163. width: 100%;
  164. }
  165. /*-------------------
  166. Column Count
  167. --------------------*/
  168. /* Standard */
  169. .ui.grid > .column,
  170. .ui.grid > .row > .column {
  171. width: 6.25%;
  172. }
  173. /* Assume full width with one column */
  174. .ui.one.column.grid > .row > .column,
  175. .ui.one.column.grid > .column,
  176. .ui.grid > .one.column.row > .column {
  177. width: 100%;
  178. }
  179. .ui.two.column.grid > .row > .column,
  180. .ui.two.column.grid > .column,
  181. .ui.grid > .two.column.row > .column {
  182. width: 50%;
  183. }
  184. .ui.three.column.grid > .row > .column,
  185. .ui.three.column.grid > .column,
  186. .ui.grid > .three.column.row > .column {
  187. width: 33.3333%;
  188. }
  189. .ui.four.column.grid > .row > .column,
  190. .ui.four.column.grid > .column,
  191. .ui.grid > .four.column.row > .column {
  192. width: 25%;
  193. }
  194. .ui.five.column.grid > .row > .column,
  195. .ui.five.column.grid > .column,
  196. .ui.grid > .five.column.row > .column {
  197. width: 20%;
  198. }
  199. .ui.six.column.grid > .row > .column,
  200. .ui.six.column.grid > .column,
  201. .ui.grid > .six.column.row > .column {
  202. width: 16.66667%;
  203. }
  204. .ui.seven.column.grid > .row > .column,
  205. .ui.seven.column.grid > .column,
  206. .ui.grid > .seven.column.row > .column {
  207. width: 14.2857%;
  208. }
  209. .ui.eight.column.grid > .row > .column,
  210. .ui.eight.column.grid > .column,
  211. .ui.grid > .eight.column.row > .column {
  212. width: 12.5%;
  213. }
  214. .ui.nine.column.grid > .row > .column,
  215. .ui.nine.column.grid > .column,
  216. .ui.grid > .nine.column.row > .column {
  217. width: 11.1111%;
  218. }
  219. .ui.ten.column.grid > .row > .column,
  220. .ui.ten.column.grid > .column,
  221. .ui.grid > .ten.column.row > .column {
  222. width: 10%;
  223. }
  224. .ui.eleven.column.grid > .row > .column,
  225. .ui.eleven.column.grid > .column,
  226. .ui.grid > .eleven.column.row > .column {
  227. width: 9.0909%;
  228. }
  229. .ui.twelve.column.grid > .row > .column,
  230. .ui.twelve.column.grid > .column,
  231. .ui.grid > .twelve.column.row > .column {
  232. width: 8.3333%;
  233. }
  234. .ui.thirteen.column.grid > .row > .column,
  235. .ui.thirteen.column.grid > .column,
  236. .ui.grid > .thirteen.column.row > .column {
  237. width: 7.6923%;
  238. }
  239. .ui.fourteen.column.grid > .row > .column,
  240. .ui.fourteen.column.grid > .column,
  241. .ui.grid > .fourteen.column.row > .column {
  242. width: 7.1428%;
  243. }
  244. .ui.fifteen.column.grid > .row > .column,
  245. .ui.fifteen.column.grid > .column,
  246. .ui.grid > .fifteen.column.row > .column {
  247. width: 6.6666%;
  248. }
  249. .ui.sixteen.column.grid > .row > .column,
  250. .ui.sixteen.column.grid > .column,
  251. .ui.grid > .sixteen.column.row > .column {
  252. width: 6.25%;
  253. }
  254. /* Assume full width with one column */
  255. .ui.grid > .column:only-child,
  256. .ui.grid > .row > .column:only-child {
  257. width: 100%;
  258. }
  259. /*----------------------
  260. Relaxed
  261. -----------------------*/
  262. .ui.relaxed.grid {
  263. margin: 0% -2.5%;
  264. }
  265. .ui.relaxed.grid > .column,
  266. .ui.relaxed.grid > .row > .column {
  267. padding-right: 2.5%;
  268. padding-left: 2.5%;
  269. }
  270. /*----------------------
  271. "Floated"
  272. -----------------------*/
  273. .ui.grid .left.floated.column {
  274. float: right;
  275. }
  276. .ui.grid .right.floated.column {
  277. float: left;
  278. }
  279. /*----------------------
  280. Divided
  281. -----------------------*/
  282. .ui.divided.grid,
  283. .ui.divided.grid > .row {
  284. display: table;
  285. width: 100%;
  286. margin-right: 0% !important;
  287. margin-left: 0% !important;
  288. }
  289. .ui.divided.grid > .column:not(.row),
  290. .ui.divided.grid > .row > .column {
  291. display: table-cell;
  292. -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1), -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  293. -moz-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1), -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  294. box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1), -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  295. }
  296. .ui.divided.grid > .column.row {
  297. display: table;
  298. }
  299. .ui.divided.grid > .column:first-child,
  300. .ui.divided.grid > .row > .column:first-child {
  301. -webkit-box-shadow: none;
  302. -moz-box-shadow: none;
  303. box-shadow: none;
  304. }
  305. /* Vertically Divided */
  306. .ui.vertically.divided.grid > .row {
  307. -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1), 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  308. -moz-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1), 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  309. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1), 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  310. }
  311. .ui.vertically.divided.grid > .row > .column,
  312. .ui.vertically.divided.grid > .column:not(.row),
  313. .ui.vertically.divided.grid > .row:first-child {
  314. -webkit-box-shadow: none !important;
  315. -moz-box-shadow: none !important;
  316. box-shadow: none !important;
  317. }
  318. /*----------------------
  319. Celled
  320. -----------------------*/
  321. .ui.celled.grid {
  322. display: table;
  323. width: 100%;
  324. margin-right: 0% !important;
  325. margin-left: 0% !important;
  326. -webkit-box-shadow: 0px 0px 0px 1px #DFDFDF;
  327. -moz-box-shadow: 0px 0px 0px 1px #DFDFDF;
  328. box-shadow: 0px 0px 0px 1px #DFDFDF;
  329. }
  330. .ui.celled.grid > .row,
  331. .ui.celled.grid > .column.row,
  332. .ui.celled.grid > .column.row:first-child {
  333. display: table;
  334. width: 100%;
  335. margin-top: 0em;
  336. padding-top: 0em;
  337. -webkit-box-shadow: 0px -1px 0px 0px #dfdfdf;
  338. -moz-box-shadow: 0px -1px 0px 0px #dfdfdf;
  339. box-shadow: 0px -1px 0px 0px #dfdfdf;
  340. }
  341. .ui.celled.grid > .column:not(.row),
  342. .ui.celled.grid > .row > .column {
  343. display: table-cell;
  344. padding: 0.75em;
  345. -webkit-box-shadow: -1px 0px 0px 0px #dfdfdf;
  346. -moz-box-shadow: -1px 0px 0px 0px #dfdfdf;
  347. box-shadow: -1px 0px 0px 0px #dfdfdf;
  348. }
  349. .ui.celled.grid > .column:first-child,
  350. .ui.celled.grid > .row > .column:first-child {
  351. -webkit-box-shadow: none;
  352. -moz-box-shadow: none;
  353. box-shadow: none;
  354. }
  355. .ui.celled.page.grid {
  356. -webkit-box-shadow: none;
  357. -moz-box-shadow: none;
  358. box-shadow: none;
  359. }
  360. /*----------------------
  361. Horizontally Centered
  362. -----------------------*/
  363. /* Vertical Centered */
  364. .ui.left.aligned.grid,
  365. .ui.left.aligned.grid > .row > .column,
  366. .ui.left.aligned.grid > .column,
  367. .ui.grid .left.aligned.column,
  368. .ui.grid > .left.aligned.row > .column {
  369. text-align: right;
  370. }
  371. .ui.center.aligned.grid,
  372. .ui.center.aligned.grid > .row > .column,
  373. .ui.center.aligned.grid > .column,
  374. .ui.grid .center.aligned.column,
  375. .ui.grid > .center.aligned.row > .column {
  376. text-align: center;
  377. }
  378. .ui.right.aligned.grid,
  379. .ui.right.aligned.grid > .row > .column,
  380. .ui.right.aligned.grid > .column,
  381. .ui.grid .right.aligned.column,
  382. .ui.grid > .right.aligned.row > .column {
  383. text-align: left;
  384. }
  385. /*----------------------
  386. Vertically Centered
  387. -----------------------*/
  388. /* Vertical Centered */
  389. .ui.top.aligned.grid,
  390. .ui.top.aligned.grid > .row > .column,
  391. .ui.top.aligned.grid > .column,
  392. .ui.grid .top.aligned.column,
  393. .ui.grid > .top.aligned.row > .column {
  394. vertical-align: top;
  395. }
  396. .ui.middle.aligned.grid,
  397. .ui.middle.aligned.grid > .row > .column,
  398. .ui.middle.aligned.grid > .column,
  399. .ui.grid .middle.aligned.column,
  400. .ui.grid > .middle.aligned.row > .column {
  401. vertical-align: middle;
  402. }
  403. .ui.bottom.aligned.grid,
  404. .ui.bottom.aligned.grid > .row > .column,
  405. .ui.bottom.aligned.grid > .column,
  406. .ui.grid .bottom.aligned.column,
  407. .ui.grid > .bottom.aligned.row > .column {
  408. vertical-align: bottom;
  409. }
  410. /*----------------------
  411. Equal Height Columns
  412. -----------------------*/
  413. .ui.grid > .equal.height.row {
  414. display: table;
  415. width: 100%;
  416. }
  417. .ui.grid > .equal.height.row > .column {
  418. display: table-cell;
  419. }
  420. /*----------------------
  421. Only (Device)
  422. -----------------------*/
  423. /* Mobile Only */
  424. @media only screen and (max-width: 768px) {
  425. .ui.mobile.only.grid,
  426. .ui.grid > .mobile.only.row {
  427. display: block !important;
  428. }
  429. .ui.grid > .row > .mobile.only.column {
  430. display: inline-block !important;
  431. }
  432. .ui.divided.mobile.only.grid,
  433. .ui.celled.mobile.only.grid,
  434. .ui.divided.mobile.only.grid .row,
  435. .ui.celled.mobile.only.grid .row,
  436. .ui.divided.grid .mobile.only.row,
  437. .ui.celled.grid .mobile.only.row,
  438. .ui.grid .mobile.only.equal.height.row,
  439. .ui.mobile.only.grid .equal.height.row {
  440. display: table !important;
  441. }
  442. .ui.divided.grid > .row > .mobile.only.column,
  443. .ui.celled.grid > .row > .mobile.only.column,
  444. .ui.divided.mobile.only.grid > .row > .column,
  445. .ui.celled.mobile.only.grid > .row > .column,
  446. .ui.divided.mobile.only.grid > .column,
  447. .ui.celled.mobile.only.grid > .column {
  448. display: table-cell !important;
  449. }
  450. }
  451. @media only screen and (min-width: 768px) {
  452. .ui.mobile.only.grid,
  453. .ui.grid > .mobile.only.row,
  454. .ui.grid > .row > .mobile.only.column {
  455. display: none;
  456. }
  457. }
  458. /* Tablet Only */
  459. @media only screen and (min-width: 768px) and (max-width: 998px) {
  460. .ui.tablet.only.grid,
  461. .ui.grid > .tablet.only.row {
  462. display: block !important;
  463. }
  464. .ui.grid > .row > .tablet.only.column {
  465. display: inline-block !important;
  466. }
  467. .ui.divided.tablet.only.grid,
  468. .ui.celled.tablet.only.grid,
  469. .ui.divided.tablet.only.grid .row,
  470. .ui.celled.tablet.only.grid .row,
  471. .ui.divided.grid .tablet.only.row,
  472. .ui.celled.grid .tablet.only.row,
  473. .ui.grid .tablet.only.equal.height.row,
  474. .ui.tablet.only.grid .equal.height.row {
  475. display: table !important;
  476. }
  477. .ui.divided.grid > .row > .tablet.only.column,
  478. .ui.celled.grid > .row > .tablet.only.column,
  479. .ui.divided.tablet.only.grid > .row > .column,
  480. .ui.celled.tablet.only.grid > .row > .column,
  481. .ui.divided.tablet.only.grid > .column,
  482. .ui.celled.tablet.only.grid > .column {
  483. display: table-cell !important;
  484. }
  485. }
  486. @media only screen and (max-width: 768px), (min-width: 998px) {
  487. .ui.tablet.only.grid,
  488. .ui.grid > .tablet.only.row,
  489. .ui.grid > .row > .tablet.only.column {
  490. display: none;
  491. }
  492. }
  493. /* Computer Only */
  494. @media only screen and (min-width: 998px) {
  495. .ui.computer.only.grid,
  496. .ui.grid > .computer.only.row {
  497. display: block !important;
  498. }
  499. .ui.grid > .row > .computer.only.column {
  500. display: inline-block !important;
  501. }
  502. .ui.divided.computer.only.grid,
  503. .ui.celled.computer.only.grid,
  504. .ui.divided.computer.only.grid .row,
  505. .ui.celled.computer.only.grid .row,
  506. .ui.divided.grid .computer.only.row,
  507. .ui.celled.grid .computer.only.row,
  508. .ui.grid .computer.only.equal.height.row,
  509. .ui.computer.only.grid .equal.height.row {
  510. display: table !important;
  511. }
  512. .ui.divided.grid > .row > .computer.only.column,
  513. .ui.celled.grid > .row > .computer.only.column,
  514. .ui.divided.computer.only.grid > .row > .column,
  515. .ui.celled.computer.only.grid > .row > .column,
  516. .ui.divided.computer.only.grid > .column,
  517. .ui.celled.computer.only.grid > .column {
  518. display: table-cell !important;
  519. }
  520. }
  521. @media only screen and (max-width: 998px) {
  522. .ui.computer.only.grid,
  523. .ui.grid > .computer.only.row,
  524. .ui.grid > .row > .computer.only.column {
  525. display: none;
  526. }
  527. }
  528. /*-------------------
  529. Stackable
  530. --------------------*/
  531. @media only screen and (max-width: 768px) {
  532. .ui.stackable.grid {
  533. display: block !important;
  534. padding: 0em;
  535. }
  536. .ui.stackable.grid .row > .column,
  537. .ui.stackable.grid > .column {
  538. display: block !important;
  539. width: auto !important;
  540. margin: 1.5em 5% 0em !important;
  541. padding: 1.5em 0em 0em !important;
  542. -webkit-box-shadow: none !important;
  543. -moz-box-shadow: none !important;
  544. box-shadow: none !important;
  545. }
  546. .ui.stackable.divided.grid .column,
  547. .ui.stackable.celled.grid .column {
  548. border-top: 1px dotted rgba(0, 0, 0, 0.1);
  549. }
  550. .ui.stackable.grid > .row:first-child > .column:first-child,
  551. .ui.stackable.grid > .column:first-child {
  552. margin-top: 0em !important;
  553. padding-top: 0em !important;
  554. }
  555. .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  556. .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  557. .ui.stackable.divided.grid > .column:first-child,
  558. .ui.stackable.celled.grid > .column:first-child {
  559. border-top: none !important;
  560. }
  561. /* Remove pointers from vertical menus */
  562. .ui.stackable.grid .vertical.pointing.menu .item:after {
  563. display: none;
  564. }
  565. }