| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- /* @group <section> */
- section {
- position: absolute;
- width: 100%;
- height: 100%;
- overflow: hidden;
- z-index: 0;
- -webkit-backface-visibility: hidden;
- -webkit-transform: translate3d(100%, 0, 0);}
- section:first-child{
- z-index: 1;
- -webkit-transform: translate3d(0%, 0, 0);}
-
- section.hide{
- z-index: 0;
- -webkit-transform: translate3d(-100%, 0, 0);}
- section.show{
- z-index: 1;
- -webkit-transform: translate3d(0%, 0, 0);}
- section.static.hide{
- -webkit-transform: translate3d(0%, 0, 0);}
- section.popup{
- -webkit-transform: translate3d(0, 100%, 0);}
- section.popup.show{
- -webkit-transform: translate3d(0, 0%, 0);}
- section.popup.hide{
- -webkit-transform: translate3d(0, -100%, 0);}
- /* @end */
- /* @group <header> & <footer> */
- header, footer{
- position: absolute;
- left: 0px;
- width: 100%;
- height: 40px;
- line-height: 40px;
- display: block;
- z-index: 2;}
-
- header{
- top: 0px
- }
-
- footer{
- bottom:0px;
- }
-
- header .title, footer .title {
- float: left;
- margin: 0 8px;
- font-size: 1.1em;
- }
- section header a.button, section footer a.button{
- margin: 2px 2px auto;
- }
- section header a.button.icon, section footer a.button.icon{
- width: 17px;
- font-size: 1.5em;
- font-weight: normal;}
- /* @end */
- /* @group <nav> */
- nav{
- height: inherit;
- text-align: center;
- font-weight: normal;}
- nav a{
- display: inline-block;
- padding: 0 9px 0 10px;
- height: inherit;
- min-width: 22px;
- float: left;
- font-size: 2.0em;}
- nav a abbr{
- position: relative;
- bottom: 3px;
- margin-left: 4px;
- display: none;
- font-size: 0.5em;
- font-weight: bold;}
- nav a.current abbr{
- display: inline; }
-
- nav a.current{
- -webkit-transition: all 0.3s ease-in-out;}
- /* @end */
- /* @group <article> */
- article{
- position: absolute;
- width: 100%;
- height: auto;
- top: 0px;
- bottom: 0px;
- display: block;
- z-index: 0;
- opacity: 0;}
- article.current{
- z-index: 1;
- opacity: 1; }
- /* @end */
- /* @group .list */
- .list li:not(.toolbar) {
- padding: 8px 6px;
- list-style-type: none;
- }
- .list li:not(.toolbar) a {
- width: auto;
- display: block;
- }
- .list li:not(.toolbar) img, .list li:not(.toolbar) .icon {
- float: left;
- width: 32px;
- height: 32px;
- margin-right: 6px;
- font-size: 36px;
- font-weight: normal;
- line-height: 32px;
- }
-
- .list strong, .list small {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
-
- .list strong {
- font-size: 1.1em;
- width: 75%;
- }
- .list small {
- display: block;
- font-size: 0.9em;
- font-style: normal;
- }
- /* @group .anchor */
- .list li.anchor {
- font-size: 0.9em;
- font-weight: bold;
- padding-top: 3px;
- padding-bottom: 3px;
- }
-
- .list .anchor a {
- padding: 0px;
- }
- .list .anchor .icon{
- width: 14px !important;
- height: 14px !important;
- margin-right: 4px !important;
-
- font-size: 1.3em !important;
- font-weight: normal;
- line-height: 16px !important;
- }
- .list .anchor .bubble{
- display: none;
- }
- /* @end */
- /* @group .info */
- .list li.info{
- min-height: 48px;
- }
- .list li.info img, .list li.info .icon{
- height: 48px;
- width: 48px;
- line-height: 48px;
- }
- /* @end */
- /* @group .search */
- .list .search input{
- width: 88%;
- }
- .list .search a{
- float: right;
- height: 30px;
- margin: 0px;
- padding: 0px;
- }
- .list .search a .icon{
- height: 12px;
- width: 30px;
- margin: 0px;
- font-size: 1.2em;
- font-weight: normal;
- }
- /* @end */
- /* @group .arrow */
- .list a.arrow:before{
- float: right;
- content: ">";
- position: relative;
- top: 6px;
- font-size: 16px;
- font-family: "Courier New", Courier, mono;
- font-weight: bold;
- }
- /* @end */
- /* @group .bubble */
- .list .bubble{
- position: relative;
- right: 2px;
- top: 6px;
- float: right;
- padding: 2px 3px 3px;
- line-height: 1.0em;
- font-weight: bold;
- font-size: 0.85em;
- }
- /* @end */
- /* @end */
- /* @group .toolbar */
- .toolbar{
- height: 48px;
- line-height: 44px;
- display: block;
- }
- .toolbar a {
- float: left;
- padding: 0;
- font-size: 2.0em;
- }
- /* @end */
|