-
Notifications
You must be signed in to change notification settings - Fork 778
/
style.css
89 lines (75 loc) · 1.41 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;
margin: 0;
padding: 0;
}
h1{
text-align: center;
margin: 0.5rem;
}
main{
display: flex;
flex-direction: column;
}
a{
text-decoration: none; /* 링크의 밑줄 제거 */
color: inherit;
}
body {
background-color: blueviolet;
}
.form__input--wrapper > div{
padding: 0.5rem;
}
.form__container{
justify-content: center;
text-align: center;
margin: 0.5rem;
background-color: cornsilk;
}
.discussion__wrapper{
display: flex;
}
.discussions__container{
padding: 5rem;
}
li.discussions__container{
display: flex;
flex-direction: column;
justify-content: space-between;
list-style-type: none;
width: 540px;
margin-bottom: 0.5rem;
}
li.discussion__container{
display: flex;
align-items: center;
}
/* 이미지 */
div.discussion__avatar--wrapper{
display: flex;
justify-content: center;
align-items: center;
flex: 0 0 0;
padding : 1rem;
}
div.discussion__avatar--wrapper > img{
width: 48px;
border-radius: 50%;
}
/* 컨텐츠 (가운데)*/
.discussion__content{
width: 70%;
margin: 0px 20px
}
.discussion__information{
float: right;
}
/*체크 박스 (오른 쪽)*/
/* .discussion__answered{
display: flex;
}
.discussion__answered > p{
font-size: 30px;
} */