diff --git a/index.css b/index.css new file mode 100644 index 0000000..8cb1dd9 --- /dev/null +++ b/index.css @@ -0,0 +1,85 @@ +body { + background-color: rgb(0, 0, 0); + display: flex; + flex-direction: column; + align-items: center; + color: rgb(255, 255, 255); +} + +header { + display: flex; + justify-content: space-around; + align-items: center; + font-size: 1.6em; + background-color: rgb(0, 128, 0); + width: 70%; + height: 150px; +} + +#header-img { + height: 100px; +} + +h1 { + font-family: fantasy; +} + +.photo-img { + width: 150px; +} + +#all-characters { + display: flex; + width: 70%; + overflow: scroll; + overflow-y: hidden; + margin: 20px; + padding: 0px; + list-style-type: none; +} + +#all-characters li { + text-align: center; +} + +main { + display: none; +} + +.main-show { + display: flex; + flex-wrap: wrap; + justify-content: space-evenly; + width: 70%; + font-size: 1.1em; + border: 3px solid rgba(255, 217, 0, 0.8); +} + +#input-comment { + width: 380px; +} + +#character-info { + display: flex; + flex-direction: column; + align-items: center; +} + +#character-comments-section { + display: flex; + flex-direction: column; + align-items: center; +} +form { + display: flex; + flex-direction: column; + align-items: center; +} +#form-submit { + margin: 5px; +} + +#character-comments-ul { + align-self: flex-start; + padding: 0px 0px 0px 15px; +} \ No newline at end of file diff --git a/index.html b/index.html index 248ffe9..f78c5cd 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,28 @@ +
+