From 21287ad0c3363c37eafdefade96128d50acef70d Mon Sep 17 00:00:00 2001 From: TechRunner Date: Fri, 17 Oct 2025 14:10:01 -0500 Subject: [PATCH] Created Button page need to grab buttons now --- pages/buttons.html | 75 +++++++++++++++++++++++++++++++++++++++++ stylesheets/buttons.css | 57 +++++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+) create mode 100644 pages/buttons.html create mode 100644 stylesheets/buttons.css diff --git a/pages/buttons.html b/pages/buttons.html new file mode 100644 index 0000000..8a79a40 --- /dev/null +++ b/pages/buttons.html @@ -0,0 +1,75 @@ + + + + + + + + Buttons I've collected + + +
+
+

My Button

+

Feel Free to put in your site!

+ + +
+
+

Buttons Collecteion

+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+ + \ No newline at end of file diff --git a/stylesheets/buttons.css b/stylesheets/buttons.css new file mode 100644 index 0000000..c397e4e --- /dev/null +++ b/stylesheets/buttons.css @@ -0,0 +1,57 @@ +body{ + background-image: url("/media/Art/EmptySpace.png"); + background-size: 10%; + text-align: center; + color: rgba(221, 74, 74, 0.918) +} + +#mainView{ + display: flex; + flex-direction: column; + align-items: center; +} + +.buttonSection{ + background-color: rgba(14, 161, 129, 0.308); + border-radius: 100px; + width: 350px; + margin: 1%; + padding: 4%; + border-color: aquamarine; + border-style: ridge; + display: flex; + flex-direction: column; + align-items: center; +} + +.buttonSection h1{ + text-shadow: 3px 2px rgb(180, 70, 171); +} + +.buttonSection h3{ + color: rgba(34, 79, 163, 0.959); + text-shadow: 1px 1px aquamarine; +} + +.buttonSection img{ + padding: 2%; + border-style: dotted; + border-color: orange; +} + +.buttonSection textarea{ + width: 30%; +} + +.buttonRow{ + display: flex; + flex-direction: row; + align-items: center; +} + +ul{ + list-style: none; + align-items: center; + text-align: center; + margin: 0; +}