forked from anotheranotherhoon/fe-sprint-my-agora-states
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (63 loc) · 1.17 KB
/
style.css
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
86
87
88
89
/* TODO: 보기 좋은 나만의 아고라 스테이츠를 위해서 CSS를 수정하세요. */
*{
box-sizing: border-box;
padding: 0;
}
main{
text-align: center;
}
body{
display: flex;
flex: 1;
align-items: center;
margin: 0;
padding: 0;
justify-content: center;
}
.discussion__container {
display : flex;
flex : 1;
list-style-type : none;
justify-content: space-around;
text-align: start;
width: 540px;
height: 90px;
}
/* .discussions__container{
} */
img{
width: 80px;
border-radius: 20%;
margin:auto;
display: block;
}
.discussion__answered{
display: flex;
text-align: center;
vertical-align: middle;
width : 5%;
}
p{
vertical-align: middle;
align-items: center;
font-size: 30px;
}
.discussion__avatar--wrapper{
display:flex;
width: 15%;
}
.discussion__content{
width: 80%;
vertical-align: top;
font-size: 10px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.discussion__information{
text-align: end;
/* height: 20%; */
}
/* .discussion__title{
height: 50%;
} */
/* #form{
} */