Skip to content

Commit ecf55f5

Browse files
authored
[Frontend]가이드 화면 제작 (#58)
## 📝작업 내용 가이드 화면 제작(자세히 보기 버튼은 구현 x)
1 parent 255fe44 commit ecf55f5

26 files changed

+602
-1
lines changed
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
499 KB
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

frontend/src/assets/image/info.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
.container{
2+
width: 1200px;
3+
display: flex;
4+
flex-direction: column;
5+
gap: 7px;
6+
}
7+
8+
.container img{
9+
width: 100%;
10+
height: 254px;
11+
}
12+
13+
.content{
14+
display: flex;
15+
flex-direction: column;
16+
gap: 7px;
17+
}
18+
19+
.title{
20+
display: flex;
21+
align-items: center;
22+
gap: 12px;
23+
margin: 8px 0px 8px 30px;
24+
}
25+
26+
.title img{
27+
width: 18px;
28+
height: 18px;
29+
}
30+
31+
.category{
32+
font-size: 24px;
33+
font-weight: 500;
34+
}
35+
36+
.order{
37+
font-size: 15px;
38+
color: #808080;
39+
font-weight: 500;
40+
}
41+
42+
.btnContainer{
43+
display: flex;
44+
gap: 10px;
45+
margin-left: 20px;
46+
}
47+
48+
.textContent{
49+
display: flex;
50+
flex-direction: column;
51+
gap: 7px;
52+
margin: 0px 30px;
53+
}
54+
55+
.text{
56+
height: fit-content;
57+
padding: 26px 0;
58+
font-size: 15px;
59+
font-weight: 500;
60+
}
61+
62+
.btn{
63+
padding: 11px 0;
64+
display: flex;
65+
gap: 10px;
66+
align-items: center;
67+
}
68+
69+
.btn span{
70+
color: #ff5525;
71+
font-size: 15px;
72+
}
73+
74+
.btn img{
75+
width: 10px;
76+
height: 10px;
77+
}

0 commit comments

Comments
 (0)