Skip to content

Commit 025dce9

Browse files
committed
section-3: Challenge #3.
1 parent 4a1da3e commit 025dce9

File tree

2 files changed

+75
-4
lines changed

2 files changed

+75
-4
lines changed

starter/03-CSS-Fundamentals/challenge-1/index.html

+16-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88

99
<body>
1010
<article class="product">
11-
<h2 class="product-header">Converse Chuck Taylor All Star Low Top</h2>
11+
<h2 class="product-header">
12+
<div class="product-header-tag">sale</div>
13+
Converse Chuck Taylor All Star Low Top
14+
</h2>
1215

1316
<img alt="Converse shoes."
1417
height="250"
@@ -18,11 +21,21 @@ <h2 class="product-header">Converse Chuck Taylor All Star Low Top</h2>
1821
<p class="pricing-details"><strong>$65.00</strong></p>
1922
<p class="shipping-details">Free shipping</p>
2023
<p>Ready to dress up or down, these classic canvas Chucks are an everday wardrobe staple.</p>
21-
<p>
24+
<p class="information-link">
2225
<a href="#">More information &rightarrow;</a>
2326
</p>
2427

25-
<h4>Product details</h4>
28+
<!-- Color selector. -->
29+
<div class="color-pallete">
30+
<div class="black-option"></div>
31+
<div class="blue-option"></div>
32+
<div class="red-option"></div>
33+
<div class="yellow-option"></div>
34+
<div class="green-option"></div>
35+
<div class="brown-option"></div>
36+
</div>
37+
38+
<h4 class="details-header">Product details</h4>
2639
<ul>
2740
<li>Lightweight, durable canvas sneaker</li>
2841
<li>Lightly padded footbed for added comfort</li>

starter/03-CSS-Fundamentals/challenge-1/style.css

+59-1
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,48 @@ li {
4040
margin-bottom: 10px;
4141
}
4242

43-
h2, h4 {
43+
h2 {
4444
text-transform: uppercase;
4545
margin-bottom: 15px;
4646
margin-top: 30px;
4747
}
4848

49+
.black-option {
50+
background-color: black;
51+
}
52+
53+
.blue-option {
54+
background-color: blue;
55+
}
56+
57+
.brown-option {
58+
background-color: brown;
59+
}
60+
61+
.color-pallete {
62+
margin-bottom: 15px;
63+
}
64+
65+
.color-pallete div {
66+
display: inline-block;
67+
height: 20px;
68+
margin-right: 8px;
69+
width: 20px;
70+
}
71+
72+
.details-header {
73+
text-transform: uppercase;
74+
margin-bottom: 15px;
75+
}
76+
77+
.green-option {
78+
background-color: green;
79+
}
80+
81+
.information-link {
82+
margin-bottom: 20px;
83+
}
84+
4985
.product {
5086
border: 4px solid black;
5187
margin: 50px auto;
@@ -57,17 +93,39 @@ h2, h4 {
5793
font-size: 22px;
5894
margin: 0;
5995
padding: 15px;
96+
position: relative;
6097
text-align: center;
6198
}
6299

100+
.product-header-tag {
101+
background-color: red;
102+
color: white;
103+
display: inline-block;
104+
font-size: 16px;
105+
left: -4%;
106+
letter-spacing: 2px;
107+
padding: 5px 10px;
108+
position: absolute;
109+
text-transform: uppercase;
110+
top: -30%;
111+
}
112+
63113
.pricing-details {
64114
font-size: 24px;
65115
}
66116

117+
.red-option {
118+
background-color: red;
119+
}
120+
67121
.shipping-details {
68122
color: #777;
69123
font-size: 12px;
70124
font-weight: bold;
71125
margin-bottom: 20px;
72126
text-transform: uppercase;
73127
}
128+
129+
.yellow-option {
130+
background-color: yellow;
131+
}

0 commit comments

Comments
 (0)