| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- * {
- box-sizing: border-box;
- }
- .clear {
- clear: both;
- }
- .clearfix {
- &:before, &:after {
- clear: both;
- display: table;
- content: "";
- }
- }
- .xcode .hide-in-xcode {
- display: none;
- }
- body {
- font: 62.5% $body-font;
- background: $body-background;
- }
- h1, h2, h3 {
- font-weight: 300;
- color: #808080;
- }
- h1 {
- font-size: 2em;
- color: #000;
- }
- h4 {
- font-size: 13px;
- line-height: 1.5;
- margin: 21px 0 0 0;
- }
- a {
- color: $tint-color;
- text-decoration: none;
- }
- pre, code {
- font-family: $code-font;
- word-wrap: break-word;
- }
- pre > code, .method-declaration code {
- display: inline-block;
- font-size: .85em;
- padding: 4px 0 4px 10px;
- border-left: 5px solid rgba(0, 155, 51, .2);
- &:before {
- content: "Objective-C";
- display: block;
- font: 9px/1 $body-font;
- color: #009b33;
- text-transform: uppercase;
- letter-spacing: 2px;
- padding-bottom: 6px;
- }
- }
- pre > code {
- font-size: inherit;
- }
- table, th, td {
- border: 1px solid #e9e9e9;
- }
- table {
- width: 100%;
- }
- th, td {
- padding: 7px;
- > :first-child {
- margin-top: 0;
- }
- > :last-child {
- margin-bottom: 0;
- }
- }
- .container {
- @extend .clearfix;
- max-width: 980px;
- padding: 0 10px;
- margin: 0 auto;
- @media (max-width: $mobile-max-width) {
- padding: 0;
- }
- }
- header {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 2;
- background: #414141;
- color: #fff;
- font-size: 1.1em;
- line-height: 25px;
- letter-spacing: .05em;
- #library-title {
- float: left;
- }
- #developer-home {
- float: right;
- }
- h1 {
- font-size: inherit;
- font-weight: inherit;
- margin: 0;
- }
- p {
- margin: 0;
- }
- h1, a {
- color: inherit;
- }
- @media (max-width: $mobile-max-width) {
- position: absolute;
- .container {
- padding: 0 10px;
- }
- }
- }
- aside {
- position: fixed;
- top: 25px;
- left: 0;
- width: 100%;
- height: 25px;
- z-index: 2;
- font-size: 1.1em;
- @media (max-width: $mobile-max-width) {
- position: absolute;
- }
- #header-buttons {
- background: rgba(255, 255, 255, .8);
- margin: 0 1px;
- padding: 0;
- list-style: none;
- text-align: right;
- line-height: 32px;
- li {
- display: inline-block;
- cursor: pointer;
- padding: 0 10px;
- }
- label, select {
- cursor: inherit;
- }
- #on-this-page {
- position: relative;
- .chevron {
- display: inline-block;
- width: 14px;
- height: 4px;
- position: relative;
- .chevy {
- background: #878787;
- height: 2px;
- position: absolute;
- width: 10px;
- &.chevron-left {
- left: 0;
- transform: rotateZ(45deg) scale(0.6);
- }
- &.chevron-right {
- right: 0;
- transform: rotateZ(-45deg) scale(0.6);
- }
- }
- }
- #jump-to {
- opacity: 0;
- font-size: 16px;
- position: absolute;
- top: 5px;
- left: 0;
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- article {
- margin-top: 25px;
- #content {
- @extend .clearfix;
- background: $content-background;
- border: 1px solid $content-border;
- padding: 15px 25px 30px 25px;
- font-size: 1.4em;
- line-height: 1.45;
- position: relative;
- @media (max-width: $mobile-max-width) {
- padding: 15px 10px 20px 10px;
- }
- .navigation-top {
- position: absolute;
- top: 15px;
- right: 25px;
- }
- .title {
- margin: 21px 0 0 0;
- padding: 15px 0;
- }
- p {
- color: #414141;
- margin: 0 0 15px 0;
- }
- th, td {
- p:last-child {
- margin-bottom: 0;
- }
- }
- main {
- ul {
- list-style: none;
- margin-left: 24px;
- margin-bottom: 12px;
- padding: 0;
- li {
- position: relative;
- padding-left: 1.3em;
- &:before {
- content: "\02022";
- color: #414141;
- font-size: 1.08em;
- line-height: 1;
- position: absolute;
- left: 0;
- padding-top: 2px;
- }
- }
- }
- }
- footer {
- @extend .clearfix;
- .footer-copyright {
- margin: 70px 25px 10px 0;
- }
- p {
- font-size: .71em;
- color: #a0a0a0;
- }
- }
- }
- }
|