From 0465590040d50118cc4d2df236730c5350fb5e16 Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Sat, 4 Nov 2023 11:56:15 -0400 Subject: [PATCH] cool thing --- archive/floorplan.html | 10 +++------- hack-a-day-rules.md | 5 +---- html-css-cheatsheet.html | 2 +- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/archive/floorplan.html b/archive/floorplan.html index d364cdd..4a2c23f 100644 --- a/archive/floorplan.html +++ b/archive/floorplan.html @@ -7,12 +7,8 @@ img { max-height: 90%; margin-top: 1em; } -figcaption { - background-color: black; - color: white; - font-style: italic; - padding: 2px; - text-align: center; +.flip { + transform: rotate(180deg); } @@ -20,5 +16,5 @@ figcaption { - + diff --git a/hack-a-day-rules.md b/hack-a-day-rules.md index 8245156..3e8774e 100644 --- a/hack-a-day-rules.md +++ b/hack-a-day-rules.md @@ -131,16 +131,13 @@ Here is how the challenge works: Get out a calendar and schedule time! - **You have to make an entire project, start to finish in one day.** You don't have to use the whole day. 1-4 hours a day should be enough time. - - **Pick a broad theme. For Hack-A-Day, your projects can be anything inside that theme.** - Make it broad! "Art", not "painting". "Software", not "video games". "Making stuff", not "carpentry". - **You are not allowed to spend more than 1 day on a project.** - **You are not allowed to improve projects after the day is over.** Even after Hack-A-Day is over. - *from scratch.* - **You are not allowed to work on existing projects.** (Programmers, that means NO bug fixes for an open-source project, adding features, or finishing up old stuff you have laying around. On the other hand, using libraries or frameworks is allowed and encouraged. You can even use ones you wrote *as long as you don't tinker on the libraries during Hack-A-Day*.) - - **You are not allowed to work on or plan your project before the day.** -- *Challenge yourself* +- *Challenge yourself,* - **You should work on projects challenging to do in one day.** - *but pace yourself* - **You are allowed to skip days.** diff --git a/html-css-cheatsheet.html b/html-css-cheatsheet.html index b436e02..7dd1c4c 100644 --- a/html-css-cheatsheet.html +++ b/html-css-cheatsheet.html @@ -167,7 +167,7 @@

Including CSS

-
<link rel="stylesheet href="styles.css">
+    
<link rel="stylesheet" href="styles.css">
 <style>p { color: "red"; }</style>
 <p style="font-size: 200%;">Hello world</p>
 
-- 2.47.3