-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathStudentList.module.css
More file actions
113 lines (100 loc) · 2.13 KB
/
Copy pathStudentList.module.css
File metadata and controls
113 lines (100 loc) · 2.13 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
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 60px 20px;
min-height: calc(100vh - 100px);
background: var(--black);
}
.title {
font-family: var(--font-title);
font-size: 3rem;
font-weight: 800;
color: var(--main);
margin-bottom: 36px;
letter-spacing: 0;
}
.searchRow {
display: flex;
align-items: center;
background: var(--gray600);
border-radius: 10px;
width: 480px;
max-width: calc(100vw - 56px);
margin-bottom: 30px;
padding: 6px 6px 6px 20px;
box-sizing: border-box;
}
.searchInput {
flex: 1;
min-width: 0;
background: transparent;
border: none;
outline: none;
font-family: var(--font-main);
font-size: 1rem;
color: var(--white);
}
.searchInput::placeholder { color: var(--gray200); }
.searchBtn {
padding: 7px 15px;
background: var(--dark);
border: none;
border-radius: 10px;
color: var(--white);
font-family: var(--font-main);
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
}
.searchBtn:hover {
background: var(--main);
transition: all ease-in-out 0.2s;
}
.list {
width: 450px;
max-width: calc(100vw - 56px);
display: flex;
flex-direction: column;
gap: 12px;
box-sizing: border-box;
}
.studentItem {
display: flex;
align-items: center;
justify-content: space-between;
background: var(--gray600);
border: 1px solid var(--gray50);
border-radius: 10px;
padding: 7px 15px 7px 20px;
cursor: pointer;
transition: background 0.2s;
width: 100%;
box-sizing: border-box;
}
.studentItem:hover { background: #4a4a4a; }
.studentName {
font-family: var(--font-main);
font-size: 1rem;
font-weight: 500;
color: var(--white);
}
.arrow {
width: 25px;
height: 25px;
flex-shrink: 0;
}
/* ── 모바일 ── */
@media (max-width: 480px) {
.container {
padding: 48px 28px;
}
.title {
font-size: 2.4rem;
margin-bottom: 28px;
text-align: center;
word-break: keep-all;
line-height: 1.2;
}
}