-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (109 loc) · 1.9 KB
/
style.css
File metadata and controls
120 lines (109 loc) · 1.9 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
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
:root {
/* color */
--color-black: #3f454d;
--color-white: #ffffff;
--color-blue: #3b88c3;
--color-yellow: #fbbe28;
--color-pink: #fd7f84;
--color-light-grey: #dfdfdf;
}
* {
box-sizing: border-box;
}
html{
height: 100%;
width: 100%;
font-family: 'Noto Sans KR', sans-serif;
}
body{
margin: 0;
height: 100%;
width: 100%;
background-color: #3f454d;
}
.contents{
display: flex;
flex-direction: column;
padding: 20px;
height: 100%;
overflow:hidden;
background-color: #3f454d;
max-width: 700px;
margin: 0 auto;
}
.contents img{
width: 40px;
height: 40px;
}
.contents .logo{
display: flex;
justify-content: center;
}
.contents .logo img{
width: 100px;
height: 100px;
cursor: pointer;
}
.contents .filterList{
display: flex;
justify-content: center;
width: 100%;
}
.contents .filterList ul{
display: flex;
justify-content: center;
list-style-type : none;
padding: 0;
width: 100%;
/* max-width: 415px; */
}
.contents .filterList li{
width: calc(100% / 6);
margin: 0 10px;
cursor: pointer;
}
.contents .filterList li .filter{
height: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.contents .filterList li .filter>span{
height: 40px;
display: flex;
align-items: center;
font-weight:bold;
font-size: 20px;
border-radius:6px;
padding: 10px;
}
.contents .itmesList{
display: flex;
justify-content: center;
overflow: auto;
width: 100%;
}
.contents .itmesList::-webkit-scrollbar{ display:none; }
.contents .itmesList ul{
display: flex;
flex-direction: column;
/* min-width: 405px; */
list-style-type : none;
padding: 0;
margin: 0;
width: 100%;
}
.contents .itmesList li{
background-color: #ffffff;
margin: 5px 0;
display: flex;
align-items: center;
border-radius:6px;
padding:5px;
}
.contents .itmesList li > img{
margin: 0px 15px;
}
.contents .itmesList li > span{
font-size: 18px;
}