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.

697 lines
15 KiB

11 years ago
11 years ago
11 years ago
11 years ago
  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: left;
  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-left: 0% !important;
  27. margin-right: 0% !important;
  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: left;
  44. font-size: 1rem;
  45. padding-left: 1.5%;
  46. padding-right: 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-left: 0%;
  86. margin-right: 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 > .row > .one.wide.column,
  118. .ui.grid > .one.wide.column {
  119. width: 6.25%;
  120. }
  121. .ui.grid > .row > .two.wide.column,
  122. .ui.grid > .two.wide.column {
  123. width: 12.5%;
  124. }
  125. .ui.grid > .row > .three.wide.column,
  126. .ui.grid > .three.wide.column {
  127. width: 18.75%;
  128. }
  129. .ui.grid > .row > .four.wide.column,
  130. .ui.grid > .four.wide.column {
  131. width: 25%;
  132. }
  133. .ui.grid > .row > .five.wide.column,
  134. .ui.grid > .five.wide.column {
  135. width: 31.25%;
  136. }
  137. .ui.grid > .row > .six.wide.column,
  138. .ui.grid > .six.wide.column {
  139. width: 37.5%;
  140. }
  141. .ui.grid > .row > .seven.wide.column,
  142. .ui.grid > .seven.wide.column {
  143. width: 43.75%;
  144. }
  145. .ui.grid > .row > .eight.wide.column,
  146. .ui.grid > .eight.wide.column {
  147. width: 50%;
  148. }
  149. .ui.grid > .row > .nine.wide.column,
  150. .ui.grid > .nine.wide.column {
  151. width: 56.25%;
  152. }
  153. .ui.grid > .row > .ten.wide.column,
  154. .ui.grid > .ten.wide.column {
  155. width: 62.5%;
  156. }
  157. .ui.grid > .row > .eleven.wide.column,
  158. .ui.grid > .eleven.wide.column {
  159. width: 68.75%;
  160. }
  161. .ui.grid > .row > .twelve.wide.column,
  162. .ui.grid > .twelve.wide.column {
  163. width: 75%;
  164. }
  165. .ui.grid > .row > .thirteen.wide.column,
  166. .ui.grid > .thirteen.wide.column {
  167. width: 81.25%;
  168. }
  169. .ui.grid > .row > .fourteen.wide.column,
  170. .ui.grid > .fourteen.wide.column {
  171. width: 87.5%;
  172. }
  173. .ui.grid > .row > .fifteen.wide.column,
  174. .ui.grid > .fifteen.wide.column {
  175. width: 93.75%;
  176. }
  177. .ui.grid > .row > .sixteen.wide.column,
  178. .ui.grid > .sixteen.wide.column {
  179. width: 100%;
  180. }
  181. /*-------------------
  182. Column Count
  183. --------------------*/
  184. /* Standard */
  185. .ui.grid > .column,
  186. .ui.grid > .row > .column {
  187. width: 6.25%;
  188. }
  189. /* Assume full width with one column */
  190. .ui.one.column.grid > .row > .column,
  191. .ui.one.column.grid > .column,
  192. .ui.grid > .one.column.row > .column {
  193. width: 100%;
  194. }
  195. .ui.two.column.grid > .row > .column,
  196. .ui.two.column.grid > .column,
  197. .ui.grid > .two.column.row > .column {
  198. width: 50%;
  199. }
  200. .ui.three.column.grid > .row > .column,
  201. .ui.three.column.grid > .column,
  202. .ui.grid > .three.column.row > .column {
  203. width: 33.3333%;
  204. }
  205. .ui.four.column.grid > .row > .column,
  206. .ui.four.column.grid > .column,
  207. .ui.grid > .four.column.row > .column {
  208. width: 25%;
  209. }
  210. .ui.five.column.grid > .row > .column,
  211. .ui.five.column.grid > .column,
  212. .ui.grid > .five.column.row > .column {
  213. width: 20%;
  214. }
  215. .ui.six.column.grid > .row > .column,
  216. .ui.six.column.grid > .column,
  217. .ui.grid > .six.column.row > .column {
  218. width: 16.66667%;
  219. }
  220. .ui.seven.column.grid > .row > .column,
  221. .ui.seven.column.grid > .column,
  222. .ui.grid > .seven.column.row > .column {
  223. width: 14.2857%;
  224. }
  225. .ui.eight.column.grid > .row > .column,
  226. .ui.eight.column.grid > .column,
  227. .ui.grid > .eight.column.row > .column {
  228. width: 12.5%;
  229. }
  230. .ui.nine.column.grid > .row > .column,
  231. .ui.nine.column.grid > .column,
  232. .ui.grid > .nine.column.row > .column {
  233. width: 11.1111%;
  234. }
  235. .ui.ten.column.grid > .row > .column,
  236. .ui.ten.column.grid > .column,
  237. .ui.grid > .ten.column.row > .column {
  238. width: 10%;
  239. }
  240. .ui.eleven.column.grid > .row > .column,
  241. .ui.eleven.column.grid > .column,
  242. .ui.grid > .eleven.column.row > .column {
  243. width: 9.0909%;
  244. }
  245. .ui.twelve.column.grid > .row > .column,
  246. .ui.twelve.column.grid > .column,
  247. .ui.grid > .twelve.column.row > .column {
  248. width: 8.3333%;
  249. }
  250. .ui.thirteen.column.grid > .row > .column,
  251. .ui.thirteen.column.grid > .column,
  252. .ui.grid > .thirteen.column.row > .column {
  253. width: 7.6923%;
  254. }
  255. .ui.fourteen.column.grid > .row > .column,
  256. .ui.fourteen.column.grid > .column,
  257. .ui.grid > .fourteen.column.row > .column {
  258. width: 7.1428%;
  259. }
  260. .ui.fifteen.column.grid > .row > .column,
  261. .ui.fifteen.column.grid > .column,
  262. .ui.grid > .fifteen.column.row > .column {
  263. width: 6.6666%;
  264. }
  265. .ui.sixteen.column.grid > .row > .column,
  266. .ui.sixteen.column.grid > .column,
  267. .ui.grid > .sixteen.column.row > .column {
  268. width: 6.25%;
  269. }
  270. /* Assume full width with one column */
  271. .ui.grid > .column:only-child,
  272. .ui.grid > .row > .column:only-child {
  273. width: 100%;
  274. }
  275. /*----------------------
  276. Relaxed
  277. -----------------------*/
  278. .ui.relaxed.grid {
  279. margin: 0% -2.5%;
  280. }
  281. .ui.relaxed.grid > .column,
  282. .ui.relaxed.grid > .row > .column {
  283. padding-left: 2.5%;
  284. padding-right: 2.5%;
  285. }
  286. /*----------------------
  287. "Floated"
  288. -----------------------*/
  289. .ui.grid .left.floated.column {
  290. float: left;
  291. }
  292. .ui.grid .right.floated.column {
  293. float: right;
  294. }
  295. /*----------------------
  296. Divided
  297. -----------------------*/
  298. .ui.divided.grid,
  299. .ui.divided.grid > .row {
  300. display: table;
  301. width: 100%;
  302. margin-left: 0% !important;
  303. margin-right: 0% !important;
  304. }
  305. .ui.divided.grid > .column:not(.row),
  306. .ui.divided.grid > .row > .column {
  307. display: table-cell;
  308. -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
  309. -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  310. box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
  311. -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  312. }
  313. .ui.divided.grid > .column.row {
  314. display: table;
  315. }
  316. .ui.divided.grid > .column:first-child,
  317. .ui.divided.grid > .row > .column:first-child {
  318. -webkit-box-shadow: none;
  319. box-shadow: none;
  320. }
  321. /* Vertically Divided */
  322. .ui.vertically.divided.grid > .row {
  323. -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
  324. 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  325. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
  326. 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  327. }
  328. .ui.vertically.divided.grid > .row > .column,
  329. .ui.vertically.divided.grid > .column:not(.row),
  330. .ui.vertically.divided.grid > .row:first-child {
  331. -webkit-box-shadow: none !important;
  332. box-shadow: none !important;
  333. }
  334. /*----------------------
  335. Celled
  336. -----------------------*/
  337. .ui.celled.grid {
  338. display: table;
  339. width: 100%;
  340. margin-left: 0% !important;
  341. margin-right: 0% !important;
  342. -webkit-box-shadow: 0px 0px 0px 1px #DFDFDF;
  343. box-shadow: 0px 0px 0px 1px #DFDFDF;
  344. }
  345. .ui.celled.grid > .row,
  346. .ui.celled.grid > .column.row,
  347. .ui.celled.grid > .column.row:first-child {
  348. display: table;
  349. width: 100%;
  350. margin-top: 0em;
  351. padding-top: 0em;
  352. -webkit-box-shadow: 0px -1px 0px 0px #DFDFDF;
  353. box-shadow: 0px -1px 0px 0px #DFDFDF;
  354. }
  355. .ui.celled.grid > .column:not(.row),
  356. .ui.celled.grid > .row > .column {
  357. display: table-cell;
  358. padding: 0.75em;
  359. -webkit-box-shadow: -1px 0px 0px 0px #DFDFDF;
  360. box-shadow: -1px 0px 0px 0px #DFDFDF;
  361. }
  362. .ui.celled.grid > .column:first-child,
  363. .ui.celled.grid > .row > .column:first-child {
  364. -webkit-box-shadow: none;
  365. box-shadow: none;
  366. }
  367. .ui.celled.page.grid {
  368. -webkit-box-shadow: none;
  369. box-shadow: none;
  370. }
  371. /*----------------------
  372. Horizontally Centered
  373. -----------------------*/
  374. /* Vertical Centered */
  375. .ui.left.aligned.grid,
  376. .ui.left.aligned.grid > .row > .column,
  377. .ui.left.aligned.grid > .column,
  378. .ui.grid .left.aligned.column,
  379. .ui.grid > .left.aligned.row > .column {
  380. text-align: left;
  381. }
  382. .ui.center.aligned.grid,
  383. .ui.center.aligned.grid > .row > .column,
  384. .ui.center.aligned.grid > .column,
  385. .ui.grid .center.aligned.column,
  386. .ui.grid > .center.aligned.row > .column {
  387. text-align: center;
  388. }
  389. .ui.right.aligned.grid,
  390. .ui.right.aligned.grid > .row > .column,
  391. .ui.right.aligned.grid > .column,
  392. .ui.grid .right.aligned.column,
  393. .ui.grid > .right.aligned.row > .column {
  394. text-align: right;
  395. }
  396. /*----------------------
  397. Vertically Centered
  398. -----------------------*/
  399. /* Vertical Centered */
  400. .ui.top.aligned.grid,
  401. .ui.top.aligned.grid > .row > .column,
  402. .ui.top.aligned.grid > .column,
  403. .ui.grid .top.aligned.column,
  404. .ui.grid > .top.aligned.row > .column {
  405. vertical-align: top;
  406. }
  407. .ui.middle.aligned.grid,
  408. .ui.middle.aligned.grid > .row > .column,
  409. .ui.middle.aligned.grid > .column,
  410. .ui.grid .middle.aligned.column,
  411. .ui.grid > .middle.aligned.row > .column {
  412. vertical-align: middle;
  413. }
  414. .ui.bottom.aligned.grid,
  415. .ui.bottom.aligned.grid > .row > .column,
  416. .ui.bottom.aligned.grid > .column,
  417. .ui.grid .bottom.aligned.column,
  418. .ui.grid > .bottom.aligned.row > .column {
  419. vertical-align: bottom;
  420. }
  421. /*----------------------
  422. Equal Height Columns
  423. -----------------------*/
  424. .ui.grid > .equal.height.row {
  425. display: table;
  426. width: 100%;
  427. }
  428. .ui.grid > .equal.height.row > .column {
  429. display: table-cell;
  430. }
  431. /*----------------------
  432. Only (Device)
  433. -----------------------*/
  434. /* Mobile Only */
  435. @media only screen and (max-width : 768px) {
  436. .ui.mobile.only.grid,
  437. .ui.grid > .mobile.only.row {
  438. display: block !important;
  439. }
  440. .ui.grid > .row > .mobile.only.column {
  441. display: inline-block !important;
  442. }
  443. .ui.divided.mobile.only.grid,
  444. .ui.celled.mobile.only.grid,
  445. .ui.divided.mobile.only.grid .row,
  446. .ui.celled.mobile.only.grid .row,
  447. .ui.divided.grid .mobile.only.row,
  448. .ui.celled.grid .mobile.only.row,
  449. .ui.grid .mobile.only.equal.height.row,
  450. .ui.mobile.only.grid .equal.height.row {
  451. display: table !important;
  452. }
  453. .ui.divided.grid > .row > .mobile.only.column,
  454. .ui.celled.grid > .row > .mobile.only.column,
  455. .ui.divided.mobile.only.grid > .row > .column,
  456. .ui.celled.mobile.only.grid > .row > .column,
  457. .ui.divided.mobile.only.grid > .column,
  458. .ui.celled.mobile.only.grid > .column {
  459. display: table-cell !important;
  460. }
  461. }
  462. @media only screen and (min-width : 768px) {
  463. .ui.mobile.only.grid,
  464. .ui.grid > .mobile.only.row,
  465. .ui.grid > .mobile.only.column,
  466. .ui.grid > .row > .mobile.only.column {
  467. display: none;
  468. }
  469. }
  470. /* Tablet Only */
  471. @media only screen and (min-width : 768px) and (max-width : 998px) {
  472. .ui.tablet.only.grid,
  473. .ui.grid > .tablet.only.row {
  474. display: block !important;
  475. }
  476. .ui.grid > .row > .tablet.only.column {
  477. display: inline-block !important;
  478. }
  479. .ui.divided.tablet.only.grid,
  480. .ui.celled.tablet.only.grid,
  481. .ui.divided.tablet.only.grid .row,
  482. .ui.celled.tablet.only.grid .row,
  483. .ui.divided.grid .tablet.only.row,
  484. .ui.celled.grid .tablet.only.row,
  485. .ui.grid .tablet.only.equal.height.row,
  486. .ui.tablet.only.grid .equal.height.row {
  487. display: table !important;
  488. }
  489. .ui.divided.grid > .row > .tablet.only.column,
  490. .ui.celled.grid > .row > .tablet.only.column,
  491. .ui.divided.tablet.only.grid > .row > .column,
  492. .ui.celled.tablet.only.grid > .row > .column,
  493. .ui.divided.tablet.only.grid > .column,
  494. .ui.celled.tablet.only.grid > .column {
  495. display: table-cell !important;
  496. }
  497. }
  498. @media only screen and (max-width : 768px), (min-width: 998px) {
  499. .ui.tablet.only.grid,
  500. .ui.grid > .tablet.only.row,
  501. .ui.grid > .tablet.only.column,
  502. .ui.grid > .row > .tablet.only.column {
  503. display: none;
  504. }
  505. }
  506. /* Computer Only */
  507. @media only screen and (min-width : 998px) {
  508. .ui.computer.only.grid,
  509. .ui.grid > .computer.only.row {
  510. display: block !important;
  511. }
  512. .ui.grid > .row > .computer.only.column {
  513. display: inline-block !important;
  514. }
  515. .ui.divided.computer.only.grid,
  516. .ui.celled.computer.only.grid,
  517. .ui.divided.computer.only.grid .row,
  518. .ui.celled.computer.only.grid .row,
  519. .ui.divided.grid .computer.only.row,
  520. .ui.celled.grid .computer.only.row,
  521. .ui.grid .computer.only.equal.height.row,
  522. .ui.computer.only.grid .equal.height.row {
  523. display: table !important;
  524. }
  525. .ui.divided.grid > .row > .computer.only.column,
  526. .ui.celled.grid > .row > .computer.only.column,
  527. .ui.divided.computer.only.grid > .row > .column,
  528. .ui.celled.computer.only.grid > .row > .column,
  529. .ui.divided.computer.only.grid > .column,
  530. .ui.celled.computer.only.grid > .column {
  531. display: table-cell !important;
  532. }
  533. }
  534. @media only screen and (max-width : 998px) {
  535. .ui.computer.only.grid,
  536. .ui.grid > .computer.only.row,
  537. .ui.grid > .computer.only.column,
  538. .ui.grid > .row > .computer.only.column {
  539. display: none;
  540. }
  541. }
  542. /*-------------------
  543. Stackable
  544. --------------------*/
  545. @media only screen and (max-width : 768px) {
  546. .ui.stackable.grid {
  547. display: block !important;
  548. padding: 0em;
  549. }
  550. .ui.stackable.grid > .row > .column,
  551. .ui.stackable.grid > .column {
  552. display: block !important;
  553. width: auto !important;
  554. margin: 1.5em 5% 0em !important;
  555. padding: 1.5em 0em 0em !important;
  556. -webkit-box-shadow: none !important;
  557. box-shadow: none !important;
  558. }
  559. .ui.stackable.divided.grid .column,
  560. .ui.stackable.celled.grid .column {
  561. border-top: 1px dotted rgba(0, 0, 0, 0.1);
  562. }
  563. .ui.stackable.grid > .row:first-child > .column:first-child,
  564. .ui.stackable.grid > .column:first-child {
  565. margin-top: 0em !important;
  566. padding-top: 0em !important;
  567. }
  568. .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  569. .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  570. .ui.stackable.divided.grid > .column:first-child,
  571. .ui.stackable.celled.grid > .column:first-child {
  572. border-top: none !important;
  573. }
  574. /* Remove pointers from vertical menus */
  575. .ui.stackable.grid .vertical.pointing.menu .item:after {
  576. display: none;
  577. }
  578. }