]> git.za3k.com Git - za3k.git/commitdiff
cool thing
authorZachary Vance <za3k@za3k.com>
Sat, 4 Nov 2023 15:56:15 +0000 (11:56 -0400)
committerZachary Vance <za3k@za3k.com>
Sat, 4 Nov 2023 15:56:15 +0000 (11:56 -0400)
archive/floorplan.html
hack-a-day-rules.md
html-css-cheatsheet.html

index d364cdd935681d170d17b7fb096d269cc74b15f7..4a2c23f4e75878d7de322d13e2426318cfe5317e 100644 (file)
@@ -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);
 }
 </style>
 
@@ -20,5 +16,5 @@ figcaption {
     <img src="house_ground.png">
 </a>
 <a href="house_basement.png">
-    <img src="house_basement.png">
+    <img src="house_basement.png" class="flip">
 </a>
index 824515682633fb6a0f90bb2c1a23bee56c5381c6..3e8774e91f73bedf28f8d336c2332b58c057cb97 100644 (file)
@@ -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.**
       <small>(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*.)</small>
-    - **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.**
index b436e0246b124a8783712b424caa3e054eb484cd..7dd1c4c20353cf01471e05da53d68c60ae872ebf 100644 (file)
 <div>
     <h3>Including CSS</h3>
 
-    <pre><code>&lt;link rel="stylesheet href="styles.css"&gt;
+    <pre><code>&lt;link rel="stylesheet" href="styles.css"&gt;
 &lt;style&gt;p { color: "red"; }&lt;/style&gt;
 &lt;p style="font-size: 200%;"&gt;Hello world&lt;/p&gt;
 </code></pre>