-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathindex.css
More file actions
58 lines (50 loc) · 859 Bytes
/
index.css
File metadata and controls
58 lines (50 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
header {
display: flex;
justify-content: space-around;
background-color: green;
height: 150px;
margin: auto;
width: 70%;
align-items: center;
margin-bottom: 20px;
}
h1 {
font-family: fantasy;
color: white;
font-size: 50px;
}
header > img {
height: 100px;
}
body {
display: flex;
background-color: black;
flex-direction: column;
align-items: center;
color: white;
}
main {
display: none;
width: 70%;
border: 5px solid white;
}
input[type="text"] {
width: 380px;
}
#all-characters {
display: flex;
list-style: none;
width: 70%;
padding: 0;
margin: 0;
overflow-x: scroll;
text-align: center;
}
#character-info {
text-align: center;
}
#character-comments-section {
display: flex;
justify-content: center;
align-items: center;
}