123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /* Feel free to add any useful code */
- /* This will help you scroll just the content of your app. Eg:
- <header class="fixed">
- ...
- <article class="scrollable header">
- */
- html {
- height: 100%;
- font-size: 62.5%; /* Setting base font to 10px and define all your units in rem. 1rem = 10px */
- }
- body {
- margin: 0;
- height: 100%;
- display: block;
- overflow: hidden;
- font-family: sans-serif;
- }
- .hidden {
- visibility: hidden;
- }
- section[role="region"] {
- height: 100%;
- background: #fff;
- }
- section[role="region"] > header.fixed:first-child {
- position: absolute;
- width: 100%;
- }
- .scrollable {
- overflow: scroll;
- height: 100%;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- position: relative;
- }
- .scrollable.header {
- height: calc(100% - 5rem);
- top: 5rem;
- }
- /* Setting proper paddings and margins */
- .content {
- padding: 1.5rem;
- }
- section[role="region"] .content header {
- margin: 1.5rem -1.5rem;
- }
- section[role="region"] .content header:first-child {
- margin-top: -1.5rem;
- }
- .content [data-type="list"] {
- margin: -1.5rem;
- }
- .center {
- text-align: center;
- }
- [data-type="list"] {
- padding: 0;
- }
- [data-type="list"] ul {
- padding: 0 1.5rem;
- overflow: auto;
- }
- section[role="region"] .content [data-type="list"] header {
- margin: 0 1.5rem;
- }
- [data-type="list"] li p,
- [data-type="list"] li p:first-of-type {
- padding-left: 1.5rem;
- }
- /* Fonts */
- h1 { /* Main header */
- font-size: 2.5rem;
- font-weight: normal;
- }
- h2 { /* Subheader, Dialog title */
- font-size: 1.6rem;
- font-weight: normal;
- }
- p {
- font-size: 1.9rem;
- font-weight: normal;
- line-height: 2.5rem;
- }
- p.large { /* Dialog body */
- font-size: 2.3rem;
- font-weight: 300;
- line-height: 3rem;
- }
- p.alt { /* Body medium, Buttons */
- font-size: 1.7rem;
- font-weight: 500;
- line-height: 2.2rem;
- }
- p.small { /* Status bar */
- font-size: 1.5rem;
- line-height: 2rem;
- }
- p.mini { /* Fine print */
- font-size: 1.4rem;
- line-height: 1.9rem;
- }
- p.micro { /* App icon label */
- font-size: 1.3rem;
- line-height: 1.8rem;
- }
- ul, ol, li {
- list-style: none;
- margin: 0;
- padding: 0;
- font-size: 1.9rem;
- font-weight: normal;
- line-height: 2.5rem;
- }
- /* Themes */
- .skin-dark { background: #000; }
- .skin-organic { background: #f4f4f4; }
|