-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathindex.css
More file actions
85 lines (73 loc) · 1.26 KB
/
index.css
File metadata and controls
85 lines (73 loc) · 1.26 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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;
}