diff --git a/css-series/2023-css.html b/css-series/2023-css.html index 1d0a5c0..c207dee 100644 --- a/css-series/2023-css.html +++ b/css-series/2023-css.html @@ -55,8 +55,8 @@

Meet the C&C #LadyDevs

- Lulu Coa -

Lulu Coa

+ Julie Batson +

Julie Batson

Curriculum Director

@@ -75,12 +75,18 @@

Meet the C&C #LadyDevs

Vanessa Shultz

Vanessa Shultz

-

Presentation Director

+

Co-Presentation Director

+
+ +
+ Alicia Villegas +

Alicia Villegas

+

Co-Presentation Director

- eyebrows -

TBD

+ Tracy Hockenhull +

Tracy Hockenhull

Technical Materials Director

@@ -182,24 +188,6 @@

Tonight's Agenda:

First, we drink!


girls drinking - @@ -211,32 +199,36 @@

Getting Started

What Is CSS?



-
+
+

Controls HTML element's:

+

-
-

CSS Controls How Elements Look

+

Appearance...



+
  • CSS is similar to styling tools in MS Word.
  • +
    +
  • Just as you can set the font color, size, and style for headings in Word, CSS lets you define these for elements on a webpage.
  • + +
    -

    CSS Controls Layout

    +

    Layout...



    @@ -244,20 +236,34 @@

    Why Do We Care About CSS?



    + It's so pretty
    -
    - bbc no css vs css +

    CSS continued...

    +

    +
    -

    Awesome Stuff Done Through CSS

    -
    - Wolf animation -
    - Circus Animation +

    CSS vs. no CSS:

    +

    + GitHub no css vs css +
    +
    +

    Examples of awesome animations using CSS:

    +

    + +

    + Mona Lisa Animation +

    + Wolf animation +

    + Circus Animation

    How To Include CSS in Your Project

    @@ -288,18 +294,29 @@

    External CSS File

    Linking HTML & CSS File



    +
    +

    Linking HTML & CSS File


    -
  • <link> tag links external file (our stylesheet)
  • +

    Note about CSS files:

    @@ -327,6 +344,7 @@

    How to Write CSS


  • Property: color property
  • +
  • Value: red value
  • @@ -334,11 +352,13 @@

    How to Write CSS

    Selectors



    @@ -351,19 +371,19 @@

    Element Selector


  • Selects and styles all h1 elements

  • -
  • Good for base styles
  • +
  • Good for base\templated styles
  • Element Selector Example



    -

    html

    - +

    HTML:

    + <h1>Hello World</h1>
    -

    css

    - +

    CSS:

    + h1 {
        color: rebeccapurple;
    } @@ -394,13 +414,13 @@

    Class Selector

    Class Selector Example



    -

    html

    +

    HTML:


    <h1 class="cocktail">Cosmopolitan</h1>

    -

    css

    +

    CSS:


    .cocktail {
    diff --git a/images/CSS-session/gitHubCSS.webp b/images/CSS-session/gitHubCSS.webp new file mode 100644 index 0000000..565317c Binary files /dev/null and b/images/CSS-session/gitHubCSS.webp differ diff --git a/images/CSS-session/so_pretty.gif b/images/CSS-session/so_pretty.gif new file mode 100644 index 0000000..adc1d3f Binary files /dev/null and b/images/CSS-session/so_pretty.gif differ