diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..c7de6260 Binary files /dev/null and b/.DS_Store differ diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 4344b144..201d460b 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -9,19 +9,69 @@ +

Product Pick

+

T-shirts

-
- - -
+
+ +
+ + +
+ +
+

T-shirt details

+ + +
+ +
+

T-shirt Color

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+

T-shirt Size

+ +
+
+

Deliver Option

+ + +
+
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css index e69de29b..54c8c6fb 100644 --- a/Form-Controls/styles.css +++ b/Form-Controls/styles.css @@ -0,0 +1,113 @@ +:root{ + --dark : #293241; + --orang: #eb9681; + --sky: #e0fbfc; + --light: #98c1d9; + --gray: #143764; + --white: #fff; + --balck: #000; +} + +body{ + background-color: var(--gray); +} +h1{ + color: var(--orang); +} +h3{ + color: var(--light); +} +h2{ + color: var(--white); +} + +header{ + display: flex; + flex-direction: column; + align-items: center; + padding-top: 20px; +} +header h2{ + padding-top: 3px; +} + +.form-box{ + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + color: var(--sky); +} + +.form-box label{ + padding: 8px; +} +.t-shirt{ + display: flex; + align-items: center; + justify-content: center; + padding-top: 10px; + flex-direction: column; + color: var(--sky); +} +.t-shirt > label{ + padding-top: 5px; +} +.t-shirt > label > input{ + padding: 8px; +} +.color > h3{ + display: flex; + align-items: center; + justify-content: center; + padding-top: 5px; +} +.color { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + padding-top: 10px; +} + +.color>div>label { + padding-top: 5px; + color: var(--sky); +} +.size{ + display: flex; + align-items: center; + justify-content: center; + padding-top: 5px; + flex-direction: column; + color: var(--sky); +} +.hero{ + margin: 0; + padding: 0; +} +.hero h3{ + display: flex; + align-items: center; + justify-content: center; +} +.hero > label{ + display: flex; + align-items: center; + justify-content: center; + padding-top: 5px; + flex-direction: row; + color: var(--sky); +} + +footer{ + display: flex; + align-items: center; + justify-content: center; + margin: 50px; + margin-top: 25px; +} +footer > em{ + font-size: 1.4rem; + color:var(--orang); +}