Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 20 additions & 18 deletions challenge_1/style.css
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
bod {
background-color: black
color: white
font-familia: Helveticalalala;
font-size: 22px
body {
background-color: black;
color: white;
font-family: Helvetica;
font-size: 22px;
padding: 20px;
}

h1 {
colour: 255, 203, 5; /* rgb value */
textalign: center;
color: rgb(255, 203, 5);
text-align: center;
}

#big_div
border: 3px solid 2E549B; /* hex value */
.big_div {
border: 3px solid #2E549B;
margin: 30px;
pading: 20px;
padding: 20px;
}

pokemon_name {
text-align: center
font-size: 150;
font: bold
.pokemon_name {
text-align: center;
font-size: 150%;
font-weight: bold;
margin: 10px;
}

.sub_div {
display: flex;
}

img {
width: 250;
width: 250px;
padding-right: 50px;
}

special {
font-wieght: cold
color: 255, 203, 5; /* rgb value */
#special {
font-weight: bold;
color: rgb(255, 203, 5);
}
36 changes: 27 additions & 9 deletions challenge_2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,35 @@
<head>
<meta charset="UTF-8">
<title>Challenge #2</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div id="the_divs" class="one"<h1>Happy Birthday Pikachu!</h1><img src="images/pikachu.gif"></divvvv>
<div id="the_divs" id="two">
<p>Pikachu's birthday wishes:</p>
<li>To always remain <spanid="yellow">yellow</splan></li>
li>To never evolve into Raichu<image classes="raichu" src="images/raichu.png"></li>
<li>To stop electrocuting Ash<img id="ash" "images/ash.png">
<li>To always defeat Team Rocketimg id="team-rocket" source="images/team_rocket.jpg"></li></div>
<div class="the_divs" id="three">
<p><a "https://www.pokemon.com/us/pokedex/pikachu" target="_blank">Click here</a> to visit Pikachu's Pokedex entry</p>

<div id="one" class="the_divs">
<h1>Happy Birthday Pikachu!</h1>
<img src="images/pikachu.gif">
</div>

<div id="two" class="the_divs">
<p>Pikachu's birthday wishes:</p>

<ul>
<li>To always remain <span id="yellow">yellow</span></li>
<li>To never evolve into Raichu <img id="raichu" src="images/raichu.png"></li>
<li>To stop electrocuting Ash <img id="ash" src="images/ash.png"></li>
<li>To always defeat Team Rocket <img id="team_rocket" src="images/team_rocket.jpg"></li>
</ul>
</div>

<div id="three" class="the_divs">
<p>
<a href="https://www.pokemon.com/us/pokedex/pikachu" target="_blank">
Click here
</a>
to visit Pikachu's Pokedex entry
</p>
</div>

</body>
</html>
33 changes: 27 additions & 6 deletions challenge_3/challenge_3_extra_credit/style.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
h1 {
font-family: Helvetica;
text-align: center;
font-family: Helvetica;
text-align: center;
}

img {
width: 100px;
width: 100px;
}

#big_div {
margin: auto;
border: 5px solid black;
width: 516px;
margin: auto;
border: 5px solid black;
width: 516px;
display: flex;
justify-content: center;
align-items: center;
}

#a, #e {
display: flex;
flex-direction: column;
}

#b {
display: flex;
flex-direction: column;
}

#c, #d {
display: flex;
}

#a img, #e img, #c img, #d img {
margin: 5px;
}
16 changes: 9 additions & 7 deletions challenge_3/challenge_3a/style.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
h1 {
font-family: Helvetica;
text-align: center;
font-family: Helvetica;
text-align: center;
}

img {
width: 100px;
width: 100px;
}

div {
margin: auto;
width: 600px;
border: 5px solid black;
display: flex;
margin: auto;
width: 600px;
border: 5px solid black;
display: flex;
justify-content: space-around;
align-items: center;
}
19 changes: 12 additions & 7 deletions challenge_3/challenge_3b/style.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
h1 {
font-family: Helvetica;
text-align: center;
font-family: Helvetica;
text-align: center;
}

img {
width: 100px;
width: 100px;
}

div {
margin: auto;
width: 1250px;
height: 400px;
border: 5px solid black;
margin: auto;
width: 1250px;
height: 400px;
border: 5px solid black;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
gap: 20px;
}
31 changes: 24 additions & 7 deletions challenge_3/challenge_3c/style.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,35 @@
h1 {
font-family: Helvetica;
text-align: center;
font-family: Helvetica;
text-align: center;
}

img {
width: 100px;
width: 100px;
}

div div {
margin: auto;
width: 33%;
height: 250px;
margin: auto;
width: 33%;
height: 250px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

#big_div {
border: 5px solid black;
border: 5px solid black;
display: flex;
}

#sub_div1 {
background-color: lightblue;
}

#sub_div2 {
background-color: lightyellow;
}

#sub_div3 {
background-color: lightsalmon;
}
18 changes: 7 additions & 11 deletions warm_up_challenge/style.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
/* Figure out 5 or more DIFFERENT ways to fill in the blank
to produce the desired output */

_________ {
.pika {
font-family: Helvetica;
font-size: 300%;
color: #ffd63e;
text-align: center;
}

/* Record your solutions here:
#1 -
#2 -
#3 -
#4 -
#5 -

e.g. - .pika */
#1 - .pika
#2 - .chuuuuu
#3 - #unique
#4 - h1
#5 - div h1
*/