-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathindex.css
More file actions
45 lines (40 loc) · 738 Bytes
/
index.css
File metadata and controls
45 lines (40 loc) · 738 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
body {
background-color: black;
color: white;
display: flex;
flex-direction: column;
align-items: center;
}
header {
display: flex;
justify-content: space-around;
align-items: center;
margin: auto;
width: 70%;
height: 150px;
background-color: rgb(0, 128, 0);
font-family: fantasy;
}
header > img {
height: 100px;
}
main {
display: none;
width: 70%;
border: white solid 1px;
/* display: flex; */
margin: auto;
/* justify-content: space-around; */
}
#all-characters {
display: flex;
list-style-type: none;
width: 70%;
padding: 0;
margin: auto;
overflow-x: scroll;
text-align: center;
}
input[type="text"] {
width: 380px;
}