forked from anotheranotherhoon/fe-sprint-my-agora-states
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
169 lines (145 loc) · 3.13 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* TODO: 보기 좋은 나만의 아고라 스테이츠를 위해서 CSS를 수정하세요. */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url('./images/question.jpg');
}
main {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
background-color: rgba(255, 255, 255, 0.603);
}
@font-face {
font-family: 'GangwonEduPowerExtraBoldA';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/GangwonEduPowerExtraBoldA.woff') format('woff');
font-weight: normal;
font-style: normal;
}
li {
list-style-type: none;
}
.registered {
display: flex;
flex-direction: column;
align-items: center;
font-size: 20px;
color:rgb(51, 51, 51);
padding: 10px;
}
h1 {
height: 10px;
margin: 10px;
text-shadow: 0 0 5px #3d3d3d;
font-family: 'Lobster', cursive;
}
section.form__container {
margin: 20px;
padding: 30px;
text-align:center;
}
.form__input--name input {
width:300px;
height: 30px;
font-size:1rem;
margin: 5px;
border-radius: 10px;
border: 2px solid #ffffff;
box-shadow: 0 0 10px #3d3d3d;
}
.form__input--title input {
width:300px;
height: 30px;
font-size: 1rem;
margin: 5px;
border-radius: 10px;
border: 2px solid #ffffff;
box-shadow: 0 0 10px #3d3d3d;
}
.form__textbox {
display: flex;
flex-direction: column;
}
textarea {
margin: 5px;
height: 20vh;
font-size: 1rem;
margin: 5px;
box-shadow: 0 0 10px #3d3d3d;
border-radius: 10px;
}
.form__submit input {
width: 200px;
height: 30px;
border-radius: 10px;
margin: 5px;
font-size: 15px;
border: 2px solid rgb(255, 255, 255);
margin : 20px;
box-shadow: 0 0 10px #3d3d3d;
font-family: 'Lobster', cursive;
}
.form__submit {
height: 10px;
}
.form__submit input:hover {
background-color: #818181;
box-shadow: 0 0 10px #3d3d3d;
}
.discussion__avatar--wrapper > img {
width: 70px;
border-radius: 100%;
box-shadow: 0 0 10px #3d3d3d;
}
.discussion__wrapper {
width: auto;
height: 500px;
padding: 20px 20px;
overflow: scroll;
}
.discussion__container {
background-color: rgba(117, 117, 117, 0.747);
border-radius: 80px 40px 40px 80px;
width : 600px;
height: 120px;
display: flex;
align-items: center;
justify-content: space-between;
margin: 20px;
padding: 30px;
box-shadow: 0 0 10px #3d3d3d;
}
.discussion__content > :nth-child(1){
width: 350px;
height: 30px;
text-align: left;
margin: 10px;
font-family: 'GangwonEduPowerExtraBoldA';
font-size: 15px;
text-shadow: 0 0 5px #3d3d3d;
}
.discussion__content > :nth-child(2){
height: 30px;
text-align: left;
padding: 10px;
font-size: 10px;
text-shadow: 0 0 5px #3d3d3d;
}
.discussion__answered {
align-items: center;
font-size: 30px;
color: rgb(221, 221, 221);
text-shadow: 0 0 10px #3d3d3d;
}
a:link {
color: rgb(0, 0, 0);
text-decoration-line: none;
}