|
1 | 1 | <!doctype html> |
2 | 2 | <html class="no-js" lang="en" data-content_root="../"> |
3 | | - <head><meta charset="utf-8"/> |
4 | | - <meta name="viewport" content="width=device-width,initial-scale=1"/> |
| 3 | + <head><meta charset="utf-8"> |
| 4 | + <meta name="viewport" content="width=device-width,initial-scale=1"> |
5 | 5 | <meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" /> |
6 | | -<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Unit 1: Creative Development" href="../Unit%201/Creative_Development.html" /><link rel="prev" title="🎮 PyGame: An Introduction" href="PyGame.html" /> |
| 6 | +<link rel="index" title="Index" href="../genindex.html"><link rel="search" title="Search" href="../search.html"><link rel="next" title="Unit 1: Creative Development" href="../Unit%201/Creative_Development.html"><link rel="prev" title="🎮 PyGame: An Introduction" href="PyGame.html"> |
7 | 7 |
|
8 | | - <!-- Generated with Sphinx 8.1.3 and Furo 2025.07.19 --> |
| 8 | + <!-- Generated with Sphinx 8.1.3 and Furo 2025.09.25 --> |
9 | 9 | <title>🐢 Python Turtle Graphics — Comprehensive Guide - AP CS Principles</title> |
10 | 10 | <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d111a655" /> |
11 | | - <link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=25af2a20" /> |
| 11 | + <link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=580074bf" /> |
12 | 12 | <link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=8dab3a3b" /> |
13 | 13 |
|
14 | 14 |
|
|
22 | 22 | } |
23 | 23 | @media not print { |
24 | 24 | body[data-theme="dark"] { |
25 | | - --color-code-background: #2b2b2b; |
26 | | - --color-code-foreground: #f8f8f2; |
| 25 | + --color-code-background: #202020; |
| 26 | + --color-code-foreground: #d0d0d0; |
27 | 27 |
|
28 | 28 | } |
29 | 29 | @media (prefers-color-scheme: dark) { |
30 | 30 | body:not([data-theme="light"]) { |
31 | | - --color-code-background: #2b2b2b; |
32 | | - --color-code-foreground: #f8f8f2; |
| 31 | + --color-code-background: #202020; |
| 32 | + --color-code-foreground: #d0d0d0; |
33 | 33 |
|
34 | 34 | } |
35 | 35 | } |
|
144 | 144 | </symbol> |
145 | 145 | </svg> |
146 | 146 |
|
147 | | -<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation"> |
148 | | -<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc"> |
149 | | -<label class="overlay sidebar-overlay" for="__navigation"> |
150 | | - <div class="visually-hidden">Hide navigation sidebar</div> |
151 | | -</label> |
152 | | -<label class="overlay toc-overlay" for="__toc"> |
153 | | - <div class="visually-hidden">Hide table of contents sidebar</div> |
154 | | -</label> |
| 147 | +<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation" aria-label="Toggle site navigation sidebar"> |
| 148 | +<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc" aria-label="Toggle table of contents sidebar"> |
| 149 | +<label class="overlay sidebar-overlay" for="__navigation"></label> |
| 150 | +<label class="overlay toc-overlay" for="__toc"></label> |
155 | 151 |
|
156 | 152 | <a class="skip-to-content muted-link" href="#furo-main-content">Skip to content</a> |
157 | 153 |
|
|
161 | 157 | <header class="mobile-header"> |
162 | 158 | <div class="header-left"> |
163 | 159 | <label class="nav-overlay-icon" for="__navigation"> |
164 | | - <div class="visually-hidden">Toggle site navigation sidebar</div> |
165 | | - <i class="icon"><svg><use href="#svg-menu"></use></svg></i> |
| 160 | + <span class="icon"><svg><use href="#svg-menu"></use></svg></span> |
166 | 161 | </label> |
167 | 162 | </div> |
168 | 163 | <div class="header-center"> |
169 | 164 | <a href="../index.html"><div class="brand">AP CS Principles</div></a> |
170 | 165 | </div> |
171 | 166 | <div class="header-right"> |
172 | 167 | <div class="theme-toggle-container theme-toggle-header"> |
173 | | - <button class="theme-toggle"> |
174 | | - <div class="visually-hidden">Toggle Light / Dark / Auto color theme</div> |
| 168 | + <button class="theme-toggle" aria-label="Toggle Light / Dark / Auto color theme"> |
175 | 169 | <svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg> |
176 | 170 | <svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg> |
177 | 171 | <svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg> |
178 | 172 | <svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg> |
179 | 173 | </button> |
180 | 174 | </div> |
181 | 175 | <label class="toc-overlay-icon toc-header-icon" for="__toc"> |
182 | | - <div class="visually-hidden">Toggle table of contents sidebar</div> |
183 | | - <i class="icon"><svg><use href="#svg-toc"></use></svg></i> |
| 176 | + <span class="icon"><svg><use href="#svg-toc"></use></svg></span> |
184 | 177 | </label> |
185 | 178 | </div> |
186 | 179 | </header> |
|
262 | 255 | </a> |
263 | 256 | </div> |
264 | 257 | <div class="theme-toggle-container theme-toggle-content"> |
265 | | - <button class="theme-toggle"> |
266 | | - <div class="visually-hidden">Toggle Light / Dark / Auto color theme</div> |
| 258 | + <button class="theme-toggle" aria-label="Toggle Light / Dark / Auto color theme"> |
267 | 259 | <svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg> |
268 | 260 | <svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg> |
269 | 261 | <svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg> |
270 | 262 | <svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg> |
271 | 263 | </button> |
272 | 264 | </div> |
273 | 265 | <label class="toc-overlay-icon toc-content-icon" for="__toc"> |
274 | | - <div class="visually-hidden">Toggle table of contents sidebar</div> |
275 | | - <i class="icon"><svg><use href="#svg-toc"></use></svg></i> |
| 266 | + <span class="icon"><svg><use href="#svg-toc"></use></svg></span> |
276 | 267 | </label> |
277 | 268 | </div> |
278 | 269 | <article role="main" id="furo-main-content"> |
|
0 commit comments