diff --git a/index.css b/index.css new file mode 100644 index 0000000..c41f734 --- /dev/null +++ b/index.css @@ -0,0 +1,47 @@ +header > h1 { + font-family: fantasy; + color: white; +} + +body { + background-color: black; + color: white; + display: column; + flex-direction: column; + align-items: center; +} +header > img { + height: 100px; + width: 100px; +} + +header { + height: 150px; + width: 70%; + display: flex; + justify-content: space-between; + padding: 0 30px; + align-items: center; + margin-bottom: 20px; + background-color: green; +} + +#all-characters { + display: flex; + list-style: none; + flex-direction: row; + width: 70%; + padding:0; + margin:0; + overflow-x: scroll; +} + +main { + width: 70%; + display: none; + border: 5px solid white; +} + +input[type="text"]{ + width: 380px; +} diff --git a/index.html b/index.html index 248ffe9..56a9981 100644 --- a/index.html +++ b/index.html @@ -3,9 +3,35 @@
+
+