diff --git a/books/index.html b/books/index.html index 0dab266..ff8b598 100644 --- a/books/index.html +++ b/books/index.html @@ -60,7 +60,7 @@

Processing for Android: Create Mobile, Sensor-Aware, and VR Applications Usi Order from Amazon
Order from Barnes & Noble
Read first three chapters online

-

Processing for Android

+

Processing for Android

Learn how to use the Processing programming language and environment to create Android applications with ease. This book covers the basics of the Processing language, allowing users to effectively program interactive graphics in 2D and 3D, and describes in detail the application of these techniques to different types of Android devices (smartphones, tablets, wearables and smartwatches, as well as to Cardboard-compatible devices in order to create VR experiences). With this book, you will be able to write engaging apps with interactive visuals driven by motion and location information obtained from the device’s sensors; including health data from the wearer, like step count and heart rate.


@@ -70,7 +70,7 @@

Rapid Android Development: Build Rich, Sensor-Based Applications with Proces Order from Amazon
Read full book online

-

Rapid Android Development

+

Rapid Android Development

Create mobile apps for Android phones and tablets faster and more easily than you ever imagined. Use “Processing,” the free, award-winning, graphics-savvy language and development environment, to work with the touchscreens, hardware sensors, cameras, network transceivers, and other devices and software in the latest Android phones and tablets.


diff --git a/css/install.css b/css/install.css new file mode 100644 index 0000000..d951d3e --- /dev/null +++ b/css/install.css @@ -0,0 +1,102 @@ +/* Styling the install button for pde:// URI protocol */ + +.shield-button { + display: flex; + align-items: center; + background-color: #ffffff; + border: 2px solid #cccccc; + border-radius: 50px; + padding: 8px 20px 8px 15px; /* top right bottom left */ + cursor: pointer; + transition: border-color 0.3s, background-color 0.3s; + text-decoration: none; + font-weight: bold; +} + +.shield-button:hover { + border-color: #a9a9a9; + background-color: #f2f2f2; +} + +.shield-button:active { + border-color: #a9a9a9; + background-color: #e0e0e0; +} + +.btn_logo-container { + border-radius: 5px; + padding: 5px; + margin-right: 5px; +} + +.btn_logo { + width: 30px; + height: 30px; +} + +.btn_text-container { + color: #333333; +} + +.btn_text { + margin-top: 1rem; + font-size: 1rem; + color: #6f6f6f; +} + +.btn_tooltip { + position: relative; + display: inline-block; + cursor: pointer; +} + +.btn_tooltip .btn_tooltiptext { + visibility: hidden; + width: 250px; + background-color: #555; + color: #fff; + text-align: left; + border-radius: 6px; + padding: 8px 10px 10px 25px; /* top right bottom left */ + position: absolute; + z-index: 1; + bottom: 125%; /* Position the tooltip above the button */ + left: 50%; + margin-left: -125px; /* Center the tooltip */ + opacity: 0; + transition: opacity 0.3s; +} + +.btn_tooltip .btn_tooltiptext::before { + content: ""; + position: absolute; + top: 100%; + left: 50%; + margin-left: -10px; + border-width: 10px; + border-style: solid; + border-color: #555 transparent transparent transparent; +} + +/* link in tooltip: no underline, light blue, no clicked color */ +.btn_tooltip .btn_tooltiptext a { + text-decoration: none; + color: #8ec8f7; +} + +.btn_tooltip.show .btn_tooltiptext { + visibility: visible; + opacity: 1; +} + +@keyframes ellipsis { + 0% { content: " . "; } + 33% { content: " .. "; } + 66% { content: " ..."; } +} + +.ellipsis::after { + content: ""; + display: inline-block; + animation: ellipsis 1.2s infinite; +} \ No newline at end of file diff --git a/css/main.css b/css/main.css index ed27290..dc572ab 100644 --- a/css/main.css +++ b/css/main.css @@ -242,7 +242,7 @@ section { } body { - color: #888; + color: #666; font: 300 16px/22px "Lato", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; } diff --git a/es/books/imgs/pacolubri.jpg b/es/books/imgs/pacolubri.jpg deleted file mode 100644 index eb55ac6..0000000 Binary files a/es/books/imgs/pacolubri.jpg and /dev/null differ diff --git a/es/books/imgs/radsauter.jpg b/es/books/imgs/radsauter.jpg deleted file mode 100644 index 8af9dac..0000000 Binary files a/es/books/imgs/radsauter.jpg and /dev/null differ diff --git a/es/books/index.html b/es/books/index.html index de286c7..34f064a 100644 --- a/es/books/index.html +++ b/es/books/index.html @@ -30,7 +30,7 @@

Processing para Android