-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmenu.css
More file actions
88 lines (77 loc) · 1.77 KB
/
Copy pathmenu.css
File metadata and controls
88 lines (77 loc) · 1.77 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
86
87
88
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Hedvig+Letters+Sans&family=Hedvig+Letters+Serif:opsz@12..24&family=Noto+Sans+KR:wght@300&family=Roboto:ital@1&display=swap');
#menu {
/* background-color: peachpuff; */
vertical-align: top;
font-size: medium;
border-right: 2px solid #FFBE99;
border-left: 2px solid #FFBE99;
min-width: 200px;
width: 200px;
padding: auto;
margin-top: 0;
min-height: 80vh;
height: 1085px;
position: inherit;
display: flex;
flex-direction: column; /* 세로 방향으로 아이템들을 배치 */
align-items: flex-start; /* 아이템들을 왼쪽으로 정렬 */
background-color: #f8e0d3;
}
#menu ul{
list-style-type: none;
padding: 0;
width: 100%;
}
#menu li {
padding: 20px;
width: 100%;
box-sizing: border-box;
margin-top: 60px;
margin-bottom: 50px;
border-top: 1px solid black;
border-bottom: 1px solid black;
text-align: center;
}
#menu li:hover {
transform: scale(1.1);
}
#menu_title{
margin-top: 15px;
text-align: center;
width: 100%;
padding-bottom: 15px;
font-weight: bold;
border-bottom: 1px solid black;
}
#content {
position: inherit;
width: 900px;
height: 1024px;
min-width: 300px;
padding: 30px;
}
#content_box{
width: 1100px;
height: 925px;
border-radius: 30px;
border: 1px solid #FFBE99;
background: #FFF;
padding: 50px;
}
#logo {
width: 70%;
height: 70%;
margin: 0;
padding: 0;
}
a{
list-style-type: none;
text-decoration: none;
color: black;
}
ul{
width: auto;
padding: 50px;
padding-left: 45px;
height: auto;
}