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.

705 lines
15 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
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: 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% !important;
  27. margin-left: 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: 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 > .row > .one.wide.column,
  118. .ui.grid > .one.wide.column {
  119. width: 6.25% !important;
  120. }
  121. .ui.grid > .row > .two.wide.column,
  122. .ui.grid > .two.wide.column {
  123. width: 12.5% !important;
  124. }
  125. .ui.grid > .row > .three.wide.column,
  126. .ui.grid > .three.wide.column {
  127. width: 18.75% !important;
  128. }
  129. .ui.grid > .row > .four.wide.column,
  130. .ui.grid > .four.wide.column {
  131. width: 25% !important;
  132. }
  133. .ui.grid > .row > .five.wide.column,
  134. .ui.grid > .five.wide.column {
  135. width: 31.25% !important;
  136. }
  137. .ui.grid > .row > .six.wide.column,
  138. .ui.grid > .six.wide.column {
  139. width: 37.5% !important;
  140. }
  141. .ui.grid > .row > .seven.wide.column,
  142. .ui.grid > .seven.wide.column {
  143. width: 43.75% !important;
  144. }
  145. .ui.grid > .row > .eight.wide.column,
  146. .ui.grid > .eight.wide.column {
  147. width: 50% !important;
  148. }
  149. .ui.grid > .row > .nine.wide.column,
  150. .ui.grid > .nine.wide.column {
  151. width: 56.25% !important;
  152. }
  153. .ui.grid > .row > .ten.wide.column,
  154. .ui.grid > .ten.wide.column {
  155. width: 62.5% !important;
  156. }
  157. .ui.grid > .row > .eleven.wide.column,
  158. .ui.grid > .eleven.wide.column {
  159. width: 68.75% !important;
  160. }
  161. .ui.grid > .row > .twelve.wide.column,
  162. .ui.grid > .twelve.wide.column {
  163. width: 75% !important;
  164. }
  165. .ui.grid > .row > .thirteen.wide.column,
  166. .ui.grid > .thirteen.wide.column {
  167. width: 81.25% !important;
  168. }
  169. .ui.grid > .row > .fourteen.wide.column,
  170. .ui.grid > .fourteen.wide.column {
  171. width: 87.5% !important;
  172. }
  173. .ui.grid > .row > .fifteen.wide.column,
  174. .ui.grid > .fifteen.wide.column {
  175. width: 93.75% !important;
  176. }
  177. .ui.grid > .row > .sixteen.wide.column,
  178. .ui.grid > .sixteen.wide.column {
  179. width: 100% !important;
  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-right: 2.5%;
  284. padding-left: 2.5%;
  285. }
  286. /*----------------------
  287. "Floated"
  288. -----------------------*/
  289. .ui.grid .left.floated.column {
  290. float: right;
  291. }
  292. .ui.grid .right.floated.column {
  293. float: left;
  294. }
  295. /*----------------------
  296. Divided
  297. -----------------------*/
  298. .ui.divided.grid,
  299. .ui.divided.grid > .row {
  300. display: table;
  301. width: 100%;
  302. margin-right: 0% !important;
  303. margin-left: 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), -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  309. box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1), -2px 0px 0px 0px rgba(255, 255, 255, 0.8);
  310. }
  311. .ui.divided.grid > .column.row {
  312. display: table;
  313. }
  314. .ui.divided.grid > .column:first-child,
  315. .ui.divided.grid > .row > .column:first-child {
  316. -webkit-box-shadow: none;
  317. box-shadow: none;
  318. }
  319. /* Vertically Divided */
  320. .ui.vertically.divided.grid > .row {
  321. -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1), 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  322. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1), 0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
  323. }
  324. .ui.vertically.divided.grid > .row > .column,
  325. .ui.vertically.divided.grid > .column:not(.row),
  326. .ui.vertically.divided.grid > .row:first-child {
  327. -webkit-box-shadow: none !important;
  328. box-shadow: none !important;
  329. }
  330. /*----------------------
  331. Celled
  332. -----------------------*/
  333. .ui.celled.grid {
  334. display: table;
  335. width: 100%;
  336. margin-right: 0% !important;
  337. margin-left: 0% !important;
  338. -webkit-box-shadow: 0px 0px 0px 1px #DFDFDF;
  339. box-shadow: 0px 0px 0px 1px #DFDFDF;
  340. }
  341. .ui.celled.grid > .row,
  342. .ui.celled.grid > .column.row,
  343. .ui.celled.grid > .column.row:first-child {
  344. display: table;
  345. width: 100%;
  346. margin-top: 0em;
  347. padding-top: 0em;
  348. -webkit-box-shadow: 0px -1px 0px 0px #dfdfdf;
  349. box-shadow: 0px -1px 0px 0px #dfdfdf;
  350. }
  351. .ui.celled.grid > .column:not(.row),
  352. .ui.celled.grid > .row > .column {
  353. display: table-cell;
  354. padding: 0.75em;
  355. -webkit-box-shadow: -1px 0px 0px 0px #dfdfdf;
  356. box-shadow: -1px 0px 0px 0px #dfdfdf;
  357. }
  358. .ui.celled.grid > .column:first-child,
  359. .ui.celled.grid > .row > .column:first-child {
  360. -webkit-box-shadow: none;
  361. box-shadow: none;
  362. }
  363. .ui.celled.page.grid {
  364. -webkit-box-shadow: none;
  365. box-shadow: none;
  366. }
  367. /*----------------------
  368. Horizontally Centered
  369. -----------------------*/
  370. /* Vertical Centered */
  371. .ui.left.aligned.grid,
  372. .ui.left.aligned.grid > .row > .column,
  373. .ui.left.aligned.grid > .column,
  374. .ui.grid .left.aligned.column,
  375. .ui.grid > .left.aligned.row > .column {
  376. text-align: right;
  377. }
  378. .ui.center.aligned.grid,
  379. .ui.center.aligned.grid > .row > .column,
  380. .ui.center.aligned.grid > .column,
  381. .ui.grid .center.aligned.column,
  382. .ui.grid > .center.aligned.row > .column {
  383. text-align: center;
  384. }
  385. .ui.right.aligned.grid,
  386. .ui.right.aligned.grid > .row > .column,
  387. .ui.right.aligned.grid > .column,
  388. .ui.grid .right.aligned.column,
  389. .ui.grid > .right.aligned.row > .column {
  390. text-align: left;
  391. }
  392. .ui.justified.grid,
  393. .ui.justified.grid > .row > .column,
  394. .ui.justified.grid > .column,
  395. .ui.grid .justified.column,
  396. .ui.grid > .justified.row > .column {
  397. text-align: justify;
  398. -webkit-hyphens: auto;
  399. -moz-hyphens: auto;
  400. -ms-hyphens: auto;
  401. hyphens: auto;
  402. }
  403. /*----------------------
  404. Vertically Centered
  405. -----------------------*/
  406. /* Vertical Centered */
  407. .ui.top.aligned.grid,
  408. .ui.top.aligned.grid > .row > .column,
  409. .ui.top.aligned.grid > .column,
  410. .ui.grid .top.aligned.column,
  411. .ui.grid > .top.aligned.row > .column {
  412. vertical-align: top;
  413. }
  414. .ui.middle.aligned.grid,
  415. .ui.middle.aligned.grid > .row > .column,
  416. .ui.middle.aligned.grid > .column,
  417. .ui.grid .middle.aligned.column,
  418. .ui.grid > .middle.aligned.row > .column {
  419. vertical-align: middle;
  420. }
  421. .ui.bottom.aligned.grid,
  422. .ui.bottom.aligned.grid > .row > .column,
  423. .ui.bottom.aligned.grid > .column,
  424. .ui.grid .bottom.aligned.column,
  425. .ui.grid > .bottom.aligned.row > .column {
  426. vertical-align: bottom;
  427. }
  428. /*----------------------
  429. Equal Height Columns
  430. -----------------------*/
  431. .ui.grid > .equal.height.row {
  432. display: table;
  433. width: 100%;
  434. }
  435. .ui.grid > .equal.height.row > .column {
  436. display: table-cell;
  437. }
  438. /*----------------------
  439. Only (Device)
  440. -----------------------*/
  441. /* Mobile Only */
  442. @media only screen and (max-width: 768px) {
  443. .ui.mobile.only.grid,
  444. .ui.grid > .mobile.only.row {
  445. display: block !important;
  446. }
  447. .ui.grid > .row > .mobile.only.column {
  448. display: inline-block !important;
  449. }
  450. .ui.divided.mobile.only.grid,
  451. .ui.celled.mobile.only.grid,
  452. .ui.divided.mobile.only.grid .row,
  453. .ui.celled.mobile.only.grid .row,
  454. .ui.divided.grid .mobile.only.row,
  455. .ui.celled.grid .mobile.only.row,
  456. .ui.grid .mobile.only.equal.height.row,
  457. .ui.mobile.only.grid .equal.height.row {
  458. display: table !important;
  459. }
  460. .ui.divided.grid > .row > .mobile.only.column,
  461. .ui.celled.grid > .row > .mobile.only.column,
  462. .ui.divided.mobile.only.grid > .row > .column,
  463. .ui.celled.mobile.only.grid > .row > .column,
  464. .ui.divided.mobile.only.grid > .column,
  465. .ui.celled.mobile.only.grid > .column {
  466. display: table-cell !important;
  467. }
  468. }
  469. @media only screen and (min-width: 768px) {
  470. .ui.mobile.only.grid,
  471. .ui.grid > .mobile.only.row,
  472. .ui.grid > .mobile.only.column,
  473. .ui.grid > .row > .mobile.only.column {
  474. display: none;
  475. }
  476. }
  477. /* Tablet Only */
  478. @media only screen and (min-width: 768px) and (max-width: 998px) {
  479. .ui.tablet.only.grid,
  480. .ui.grid > .tablet.only.row {
  481. display: block !important;
  482. }
  483. .ui.grid > .row > .tablet.only.column {
  484. display: inline-block !important;
  485. }
  486. .ui.divided.tablet.only.grid,
  487. .ui.celled.tablet.only.grid,
  488. .ui.divided.tablet.only.grid .row,
  489. .ui.celled.tablet.only.grid .row,
  490. .ui.divided.grid .tablet.only.row,
  491. .ui.celled.grid .tablet.only.row,
  492. .ui.grid .tablet.only.equal.height.row,
  493. .ui.tablet.only.grid .equal.height.row {
  494. display: table !important;
  495. }
  496. .ui.divided.grid > .row > .tablet.only.column,
  497. .ui.celled.grid > .row > .tablet.only.column,
  498. .ui.divided.tablet.only.grid > .row > .column,
  499. .ui.celled.tablet.only.grid > .row > .column,
  500. .ui.divided.tablet.only.grid > .column,
  501. .ui.celled.tablet.only.grid > .column {
  502. display: table-cell !important;
  503. }
  504. }
  505. @media only screen and (max-width: 768px), (min-width: 998px) {
  506. .ui.tablet.only.grid,
  507. .ui.grid > .tablet.only.row,
  508. .ui.grid > .tablet.only.column,
  509. .ui.grid > .row > .tablet.only.column {
  510. display: none;
  511. }
  512. }
  513. /* Computer Only */
  514. @media only screen and (min-width: 998px) {
  515. .ui.computer.only.grid,
  516. .ui.grid > .computer.only.row {
  517. display: block !important;
  518. }
  519. .ui.grid > .row > .computer.only.column {
  520. display: inline-block !important;
  521. }
  522. .ui.divided.computer.only.grid,
  523. .ui.celled.computer.only.grid,
  524. .ui.divided.computer.only.grid .row,
  525. .ui.celled.computer.only.grid .row,
  526. .ui.divided.grid .computer.only.row,
  527. .ui.celled.grid .computer.only.row,
  528. .ui.grid .computer.only.equal.height.row,
  529. .ui.computer.only.grid .equal.height.row {
  530. display: table !important;
  531. }
  532. .ui.divided.grid > .row > .computer.only.column,
  533. .ui.celled.grid > .row > .computer.only.column,
  534. .ui.divided.computer.only.grid > .row > .column,
  535. .ui.celled.computer.only.grid > .row > .column,
  536. .ui.divided.computer.only.grid > .column,
  537. .ui.celled.computer.only.grid > .column {
  538. display: table-cell !important;
  539. }
  540. }
  541. @media only screen and (max-width: 998px) {
  542. .ui.computer.only.grid,
  543. .ui.grid > .computer.only.row,
  544. .ui.grid > .computer.only.column,
  545. .ui.grid > .row > .computer.only.column {
  546. display: none;
  547. }
  548. }
  549. /*-------------------
  550. Stackable
  551. --------------------*/
  552. @media only screen and (max-width: 768px) {
  553. .ui.stackable.grid {
  554. display: block !important;
  555. padding: 0em;
  556. }
  557. .ui.stackable.grid > .row > .column,
  558. .ui.stackable.grid > .column {
  559. display: block !important;
  560. width: auto !important;
  561. margin: 1.5em 5% 0em !important;
  562. padding: 1.5em 0em 0em !important;
  563. -webkit-box-shadow: none !important;
  564. box-shadow: none !important;
  565. }
  566. .ui.stackable.divided.grid .column,
  567. .ui.stackable.celled.grid .column {
  568. border-top: 1px dotted rgba(0, 0, 0, 0.1);
  569. }
  570. .ui.stackable.grid > .row:first-child > .column:first-child,
  571. .ui.stackable.grid > .column:first-child {
  572. margin-top: 0em !important;
  573. padding-top: 0em !important;
  574. }
  575. .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  576. .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  577. .ui.stackable.divided.grid > .column:first-child,
  578. .ui.stackable.celled.grid > .column:first-child {
  579. border-top: none !important;
  580. }
  581. /* Remove pointers from vertical menus */
  582. .ui.stackable.grid .vertical.pointing.menu .item:after {
  583. display: none;
  584. }
  585. }