diff --git a/class--movie b/class--movie deleted file mode 100644 index 8b13789..0000000 --- a/class--movie +++ /dev/null @@ -1 +0,0 @@ - diff --git a/index.html b/index.html new file mode 100644 index 0000000..805f108 --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + + Github Page + + + + +
+

+ + +
+
+
+ + +
+ + \ No newline at end of file diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..d07631b --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,109 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; + font-family: "Courier New", Courier, monospace; + } + + .container { + display: grid; + height: 100vh; + background: #1f2529; + grid-template-columns: 1fr 1fr 1fr 1fr; + grid-template-rows: 1fr 1.5fr 1.3fr 0.8fr; + grid-template-areas: + "navbar navbar navbar navbar" + "sidebar input input input" + "sidebar box1 box2 box3" + "sidebar footer footer footer"; + grid-gap: 3.5rem 1.5rem; + text-align: center; + font-size: 1.5rem; + } + + nav { + background: #2f3d46; + grid-area: navbar; + text-align: center; + height: 70px; + background-color:#2f3d46; + display: flex; + justify-content: center; + padding: 20px; + color: white; + } + .Boxinput { + background: rgba(0, 0, 0, 0.354); + background-color: rgba(20, 17, 17, 0.95); + grid-area: input; + border-radius: 15px; + border-width: 10%; + grid-gap: 3.2rem; + height: 36px; + width: 469px; + position: absolute; + top: 120px; + left: 419px; + bottom: 200px; + color: white; + } + ::placeholder { + color: rgba(230, 221, 221, 0.998); + opacity: 100; /* Firefox */ + } + .box1 { + background: black; + grid-area: box1; + border-radius: 15px; + height: 130px; + width: 130px; + position: absolute; + top: 200px; + left: 350px; + } + .box2 { + background: black; + grid-area: box2; + border-radius: 15px; + height: 130px; + width: 130px; + position: absolute; + top: 200px; + left: 550px; + } + .box3 { + background: black; + grid-area: box3; + border-radius: 15px; + height: 130px; + width: 130px; + position: absolute; + top: 200px; + left: 750px; + } + .footer { + background: black; + grid-area: footer; + border-radius: 15px; + height: 100px; + width: 544px; + position: absolute; + top: 380px; + left: 350px; + } + .sideBox { + background: black; + grid-area: sidebar; + border-radius: 15px; + position: relative; + top: 10px; + left: 50px; + height: 375px; + width: 250px; + } + .fa-brands { + position: fixed; + top: 20px; + left: 20px; + bottom: 10px; + } \ No newline at end of file