scratch – Blame information for rev 79

Subversion Repositories:
Rev:
Rev Author Line No. Line
79 office 1 header, footer {
2 padding: 20px;
3 background-image: url('header.png');
4 background-size: 256px 256px;
5 }
6 footer {
7 color: #fff;
8 text-align: center;
9 }
10 .nyt-logo {
11 max-height: 40px;
12 margin-top: 5px;
13 margin-right: 5px;
14 }
15  
16 nav.navbar {
17 margin-bottom: 10px;
18 background-color: #fff;
19 border: 0px;
20 border-radius: 2px;
21 }
22 #navbar {
23 margin: 0px;
24 }
25 #navbar .navbar-nav li iframe {
26 margin-top: 15px;
27 }
28 #navbar .navbar-nav li:last-child iframe {
29 margin-right: 15px;
30 }
31  
32 @media screen and (max-width: 767px) {
33 #navbar .navbar-nav li iframe {
34 display: none;
35 }
36 }
37  
38 .mast-head {
39 margin: 10px 0;
40 }
41 .mast-head h1 {
42 margin-bottom: 15px;
43 color: #fff;
44 }
45 .mast-head p {
46 color: #fff;
47 }
48  
49 .mast-links {
50 padding-top: 10px;
51 }
52  
53 .mast-links > * {
54 vertical-align: middle;
55 margin-bottom: 10px;
56 }
57  
58 .mast-links > .btn {
59 margin-right: 30px;
60 }
61 main {
62 margin: 10px 20px;
63 }
64 main .container {
65 margin-bottom: 40px;
66 }
67  
68 code.hljs {
69 border: 1px solid #ccc;
70 padding: 1em;
71 white-space: pre;
72 margin-bottom: 10px;
73 }
74  
75 .example {
76 position: relative;
77 border: 1px solid #ccc;
78 padding: 1em 1em 0.5em 1em;
79 border-radius: 4px 4px 0 0;
80 }
81  
82 .example:after {
83 content: "Example";
84 position: absolute;
85 top: 0px;
86 right: 0px;
87 padding: 3px 7px;
88 font-size: 12px;
89 font-weight: bold;
90 background-color: #f5f5f5;
91 border: 1px solid #ccc;
92 color: #9da0a4;
93 border-radius: 0px 4px 0px 4px;
94 border-width: 0px 0px 1px 1px;
95 }
96  
97 .example + code.hljs {
98 border-top: 0;
99 border-radius: 0px 0px 4px 4px;
100 }
101  
102 .example > * {
103 margin-bottom: 10px;
104 }
105  
106 .example > div.toggle {
107 margin-right: 10px;
108 }
109  
110 .table-striped code {
111 background-color: inherit;
112 }