diff --git a/pages/hack-school/CSS_images/bold_arial_text.png b/pages/hack-school/CSS_images/bold_arial_text.png new file mode 100644 index 0000000..8cccefc Binary files /dev/null and b/pages/hack-school/CSS_images/bold_arial_text.png differ diff --git a/pages/hack-school/CSS_images/box_with_border.png b/pages/hack-school/CSS_images/box_with_border.png new file mode 100644 index 0000000..1b1e7e2 Binary files /dev/null and b/pages/hack-school/CSS_images/box_with_border.png differ diff --git a/pages/hack-school/CSS_images/centered_underlined_uppercase_text.png b/pages/hack-school/CSS_images/centered_underlined_uppercase_text.png new file mode 100644 index 0000000..288d1d7 Binary files /dev/null and b/pages/hack-school/CSS_images/centered_underlined_uppercase_text.png differ diff --git a/pages/hack-school/CSS_images/floating_image.png b/pages/hack-school/CSS_images/floating_image.png new file mode 100644 index 0000000..42e36a0 Binary files /dev/null and b/pages/hack-school/CSS_images/floating_image.png differ diff --git a/pages/hack-school/CSS_images/hover_button.png b/pages/hack-school/CSS_images/hover_button.png new file mode 100644 index 0000000..e81e44c Binary files /dev/null and b/pages/hack-school/CSS_images/hover_button.png differ diff --git a/pages/hack-school/CSS_images/indexed_list.png b/pages/hack-school/CSS_images/indexed_list.png new file mode 100644 index 0000000..913f8a2 Binary files /dev/null and b/pages/hack-school/CSS_images/indexed_list.png differ diff --git a/pages/hack-school/CSS_images/indexed_splits.png b/pages/hack-school/CSS_images/indexed_splits.png new file mode 100644 index 0000000..f0466eb Binary files /dev/null and b/pages/hack-school/CSS_images/indexed_splits.png differ diff --git a/pages/hack-school/CSS_images/left_centered_text.png b/pages/hack-school/CSS_images/left_centered_text.png new file mode 100644 index 0000000..4deb531 Binary files /dev/null and b/pages/hack-school/CSS_images/left_centered_text.png differ diff --git a/pages/hack-school/CSS_images/margin_text.png b/pages/hack-school/CSS_images/margin_text.png new file mode 100644 index 0000000..091ba2c Binary files /dev/null and b/pages/hack-school/CSS_images/margin_text.png differ diff --git a/pages/hack-school/CSS_images/orange_box.png b/pages/hack-school/CSS_images/orange_box.png new file mode 100644 index 0000000..aa09aac Binary files /dev/null and b/pages/hack-school/CSS_images/orange_box.png differ diff --git a/pages/hack-school/CSS_images/orange_color_text.png b/pages/hack-school/CSS_images/orange_color_text.png new file mode 100644 index 0000000..e00d995 Binary files /dev/null and b/pages/hack-school/CSS_images/orange_color_text.png differ diff --git a/pages/hack-school/CSS_images/padding_div_example.png b/pages/hack-school/CSS_images/padding_div_example.png new file mode 100644 index 0000000..d209dc7 Binary files /dev/null and b/pages/hack-school/CSS_images/padding_div_example.png differ diff --git a/pages/hack-school/CSS_images/semi_transparent_text.png b/pages/hack-school/CSS_images/semi_transparent_text.png new file mode 100644 index 0000000..e13387f Binary files /dev/null and b/pages/hack-school/CSS_images/semi_transparent_text.png differ diff --git a/pages/hack-school/CSS_images/shadowed_box.png b/pages/hack-school/CSS_images/shadowed_box.png new file mode 100644 index 0000000..a0b2f82 Binary files /dev/null and b/pages/hack-school/CSS_images/shadowed_box.png differ diff --git a/pages/hack-school/CSS_images/tenpx_margin_text.png b/pages/hack-school/CSS_images/tenpx_margin_text.png new file mode 100644 index 0000000..1cc0c6d Binary files /dev/null and b/pages/hack-school/CSS_images/tenpx_margin_text.png differ diff --git a/pages/hack-school/css.mdx b/pages/hack-school/css.mdx index 15938cc..031a577 100644 --- a/pages/hack-school/css.mdx +++ b/pages/hack-school/css.mdx @@ -18,7 +18,7 @@ This method is handy for making quick style changes to specific elements, but it not recommended for extensive styling due to its lack of separation between content and presentation. ```html copy showLineNumbers -
Text with blue color
+Text with orange color
``` +![orange_color_text](pages/hack-school/CSS_images/orange_color_text.png) + - **Font**: `font-family`, `font-size`, `font-weight`, `font-style`, etc. - Modifying the font family, size, weight, style, and other typography-related properties. ```html copy showLineNumbersBold Arial 16px text
``` +![bold_arial_text](pages/hack-school/CSS_images/bold_arial_text.png) + - **Margins**: `margin` - Adjusting the space around an element, controlling the gap between elements. ```html copy showLineNumbersCentered, underlined, uppercase text
``` +![centered_underlined_uppercase_text](pages/hack-school/CSS_images/centered_underlined_uppercase_text.png) + - **Display**: `display` - Changing how elements are displayed (block, inline, flex, grid, etc.) and how they interact with other elements. ```html copy showLineNumbers