diff options
author | Andy Lu <luandy64@gmail.com> | 2021-02-21 21:09:11 -0600 |
---|---|---|
committer | Andy Lu <luandy64@gmail.com> | 2021-02-21 21:09:11 -0600 |
commit | 55ac5a86eae5ef9079e3312fd589f1bda20e43f2 (patch) | |
tree | f12426516309b481c44282c1d5c0741b35a05676 /docs/pycco.css | |
parent | 0a0f2e89de6cde25ba6ef104c64e30f92091e007 (diff) | |
download | tap-google-sheets-55ac5a86eae5ef9079e3312fd589f1bda20e43f2.tar.gz tap-google-sheets-55ac5a86eae5ef9079e3312fd589f1bda20e43f2.tar.zst tap-google-sheets-55ac5a86eae5ef9079e3312fd589f1bda20e43f2.zip |
Add files from pycco
Diffstat (limited to 'docs/pycco.css')
-rw-r--r-- | docs/pycco.css | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/docs/pycco.css b/docs/pycco.css new file mode 100644 index 0000000..a45d4c0 --- /dev/null +++ b/docs/pycco.css | |||
@@ -0,0 +1,191 @@ | |||
1 | /*--------------------- Layout and Typography ----------------------------*/ | ||
2 | body { | ||
3 | font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; | ||
4 | font-size: 16px; | ||
5 | line-height: 24px; | ||
6 | color: #252519; | ||
7 | margin: 0; padding: 0; | ||
8 | background: #f5f5ff; | ||
9 | } | ||
10 | a { | ||
11 | color: #261a3b; | ||
12 | } | ||
13 | a:visited { | ||
14 | color: #261a3b; | ||
15 | } | ||
16 | p { | ||
17 | margin: 0 0 15px 0; | ||
18 | } | ||
19 | h1, h2, h3, h4, h5, h6 { | ||
20 | margin: 40px 0 15px 0; | ||
21 | } | ||
22 | h2, h3, h4, h5, h6 { | ||
23 | margin-top: 0; | ||
24 | } | ||
25 | #container { | ||
26 | background: white; | ||
27 | } | ||
28 | #container, div.section { | ||
29 | position: relative; | ||
30 | } | ||
31 | #background { | ||
32 | position: absolute; | ||
33 | top: 0; left: 580px; right: 0; bottom: 0; | ||
34 | background: #f5f5ff; | ||
35 | border-left: 1px solid #e5e5ee; | ||
36 | z-index: 0; | ||
37 | } | ||
38 | #jump_to, #jump_page { | ||
39 | background: white; | ||
40 | -webkit-box-shadow: 0 0 25px #777; -moz-box-shadow: 0 0 25px #777; | ||
41 | -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; | ||
42 | font: 10px Arial; | ||
43 | text-transform: uppercase; | ||
44 | cursor: pointer; | ||
45 | text-align: right; | ||
46 | } | ||
47 | #jump_to, #jump_wrapper { | ||
48 | position: fixed; | ||
49 | right: 0; top: 0; | ||
50 | padding: 5px 10px; | ||
51 | } | ||
52 | #jump_wrapper { | ||
53 | padding: 0; | ||
54 | display: none; | ||
55 | } | ||
56 | #jump_to:hover #jump_wrapper { | ||
57 | display: block; | ||
58 | } | ||
59 | #jump_page { | ||
60 | padding: 5px 0 3px; | ||
61 | margin: 0 0 25px 25px; | ||
62 | } | ||
63 | #jump_page .source { | ||
64 | display: block; | ||
65 | padding: 5px 10px; | ||
66 | text-decoration: none; | ||
67 | border-top: 1px solid #eee; | ||
68 | } | ||
69 | #jump_page .source:hover { | ||
70 | background: #f5f5ff; | ||
71 | } | ||
72 | #jump_page .source:first-child { | ||
73 | } | ||
74 | div.docs { | ||
75 | float: left; | ||
76 | max-width: 500px; | ||
77 | min-width: 500px; | ||
78 | min-height: 5px; | ||
79 | padding: 10px 25px 1px 50px; | ||
80 | vertical-align: top; | ||
81 | text-align: left; | ||
82 | } | ||
83 | .docs pre { | ||
84 | margin: 15px 0 15px; | ||
85 | padding-left: 15px; | ||
86 | overflow-y: scroll; | ||
87 | } | ||
88 | .docs p tt, .docs p code { | ||
89 | background: #f8f8ff; | ||
90 | border: 1px solid #dedede; | ||
91 | font-size: 12px; | ||
92 | padding: 0 0.2em; | ||
93 | } | ||
94 | .octowrap { | ||
95 | position: relative; | ||
96 | } | ||
97 | .octothorpe { | ||
98 | font: 12px Arial; | ||
99 | text-decoration: none; | ||
100 | color: #454545; | ||
101 | position: absolute; | ||
102 | top: 3px; left: -20px; | ||
103 | padding: 1px 2px; | ||
104 | opacity: 0; | ||
105 | -webkit-transition: opacity 0.2s linear; | ||
106 | } | ||
107 | div.docs:hover .octothorpe { | ||
108 | opacity: 1; | ||
109 | } | ||
110 | div.code { | ||
111 | margin-left: 580px; | ||
112 | padding: 14px 15px 16px 50px; | ||
113 | vertical-align: top; | ||
114 | } | ||
115 | .code pre, .docs p code { | ||
116 | font-size: 12px; | ||
117 | } | ||
118 | pre, tt, code { | ||
119 | line-height: 18px; | ||
120 | font-family: Monaco, Consolas, "Lucida Console", monospace; | ||
121 | margin: 0; padding: 0; | ||
122 | } | ||
123 | div.clearall { | ||
124 | clear: both; | ||
125 | } | ||
126 | |||
127 | |||
128 | /*---------------------- Syntax Highlighting -----------------------------*/ | ||
129 | td.linenos { background-color: #f0f0f0; padding-right: 10px; } | ||
130 | span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; } | ||
131 | body .hll { background-color: #ffffcc } | ||
132 | body .c { color: #408080; font-style: italic } /* Comment */ | ||
133 | body .err { border: 1px solid #FF0000 } /* Error */ | ||
134 | body .k { color: #954121 } /* Keyword */ | ||
135 | body .o { color: #666666 } /* Operator */ | ||
136 | body .cm { color: #408080; font-style: italic } /* Comment.Multiline */ | ||
137 | body .cp { color: #BC7A00 } /* Comment.Preproc */ | ||
138 | body .c1 { color: #408080; font-style: italic } /* Comment.Single */ | ||
139 | body .cs { color: #408080; font-style: italic } /* Comment.Special */ | ||
140 | body .gd { color: #A00000 } /* Generic.Deleted */ | ||
141 | body .ge { font-style: italic } /* Generic.Emph */ | ||
142 | body .gr { color: #FF0000 } /* Generic.Error */ | ||
143 | body .gh { color: #000080; font-weight: bold } /* Generic.Heading */ | ||
144 | body .gi { color: #00A000 } /* Generic.Inserted */ | ||
145 | body .go { color: #808080 } /* Generic.Output */ | ||
146 | body .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ | ||
147 | body .gs { font-weight: bold } /* Generic.Strong */ | ||
148 | body .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ | ||
149 | body .gt { color: #0040D0 } /* Generic.Traceback */ | ||
150 | body .kc { color: #954121 } /* Keyword.Constant */ | ||
151 | body .kd { color: #954121; font-weight: bold } /* Keyword.Declaration */ | ||
152 | body .kn { color: #954121; font-weight: bold } /* Keyword.Namespace */ | ||
153 | body .kp { color: #954121 } /* Keyword.Pseudo */ | ||
154 | body .kr { color: #954121; font-weight: bold } /* Keyword.Reserved */ | ||
155 | body .kt { color: #B00040 } /* Keyword.Type */ | ||
156 | body .m { color: #666666 } /* Literal.Number */ | ||
157 | body .s { color: #219161 } /* Literal.String */ | ||
158 | body .na { color: #7D9029 } /* Name.Attribute */ | ||
159 | body .nb { color: #954121 } /* Name.Builtin */ | ||
160 | body .nc { color: #0000FF; font-weight: bold } /* Name.Class */ | ||
161 | body .no { color: #880000 } /* Name.Constant */ | ||
162 | body .nd { color: #AA22FF } /* Name.Decorator */ | ||
163 | body .ni { color: #999999; font-weight: bold } /* Name.Entity */ | ||
164 | body .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ | ||
165 | body .nf { color: #0000FF } /* Name.Function */ | ||
166 | body .nl { color: #A0A000 } /* Name.Label */ | ||
167 | body .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ | ||
168 | body .nt { color: #954121; font-weight: bold } /* Name.Tag */ | ||
169 | body .nv { color: #19469D } /* Name.Variable */ | ||
170 | body .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ | ||
171 | body .w { color: #bbbbbb } /* Text.Whitespace */ | ||
172 | body .mf { color: #666666 } /* Literal.Number.Float */ | ||
173 | body .mh { color: #666666 } /* Literal.Number.Hex */ | ||
174 | body .mi { color: #666666 } /* Literal.Number.Integer */ | ||
175 | body .mo { color: #666666 } /* Literal.Number.Oct */ | ||
176 | body .sb { color: #219161 } /* Literal.String.Backtick */ | ||
177 | body .sc { color: #219161 } /* Literal.String.Char */ | ||
178 | body .sd { color: #219161; font-style: italic } /* Literal.String.Doc */ | ||
179 | body .s2 { color: #219161 } /* Literal.String.Double */ | ||
180 | body .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ | ||
181 | body .sh { color: #219161 } /* Literal.String.Heredoc */ | ||
182 | body .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ | ||
183 | body .sx { color: #954121 } /* Literal.String.Other */ | ||
184 | body .sr { color: #BB6688 } /* Literal.String.Regex */ | ||
185 | body .s1 { color: #219161 } /* Literal.String.Single */ | ||
186 | body .ss { color: #19469D } /* Literal.String.Symbol */ | ||
187 | body .bp { color: #954121 } /* Name.Builtin.Pseudo */ | ||
188 | body .vc { color: #19469D } /* Name.Variable.Class */ | ||
189 | body .vg { color: #19469D } /* Name.Variable.Global */ | ||
190 | body .vi { color: #19469D } /* Name.Variable.Instance */ | ||
191 | body .il { color: #666666 } /* Literal.Number.Integer.Long */ | ||