-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallim.css
More file actions
117 lines (114 loc) · 2.17 KB
/
allim.css
File metadata and controls
117 lines (114 loc) · 2.17 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
:root {
--line: rgba(229, 231, 235, 0.3);
--text: #e5e7eb;
}
body {
margin: 0;
font-family: 'Noto Sans KR', sans-serif;
background: radial-gradient(circle at top, #0a0f24, #000);
color: #e5e7eb;
}
.wrap {
max-width: 900px;
margin: 0 auto;
padding: 30px 20px;
}
.header {
text-align: center;
margin-bottom: 25px;
}
.header h1 {
background: linear-gradient(to right, #38bdf8, #60a5fa, #a855f7);
-webkit-background-clip: text;
background-clip: text; /* ✅ 수정됨: 표준 속성 추가 */
-webkit-text-fill-color: transparent;
}
.menu {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.menu-btn {
background: rgba(30, 41, 59, 0.9);
border: none;
color: #e5e7eb;
padding: 20px 30px;
font-size: 1.1rem;
border-radius: 14px;
cursor: pointer;
transition: 0.2s;
}
.menu-btn:hover {
background: rgba(56, 189, 248, 0.8);
color: #020617;
}
.card {
margin-top: 20px;
padding: 20px;
border-radius: 12px;
background: rgba(17, 24, 39, 0.95);
box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}
.hidden {
display: none;
}
.sub-menu {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.sub-menu button {
background: rgba(56, 189, 248, 0.1);
border: 1px solid #60a5fa;
color: #e0f2fe;
padding: 8px 14px;
border-radius: 8px;
cursor: pointer;
transition: 0.2s;
}
.sub-menu button:hover {
background: #38bdf8;
color: #020617;
}
label {
display: block;
margin: 8px 0 4px;
}
input,
select {
width: 100%;
padding: 8px;
border-radius: 8px;
border: 1px solid #475569;
background: rgba(3, 7, 18, 0.9);
color: #e2e8f0;
}
.checkbox-group {
display: flex;
gap: 10px;
margin: 8px 0;
}
.btn {
margin-top: 10px;
background: linear-gradient(to right, #2563eb, #38bdf8);
border: none;
color: #020617;
padding: 10px;
border-radius: 10px;
cursor: pointer;
}
.btn:hover {
box-shadow: 0 0 10px #38bdf8;
}
.back-btn {
position: absolute;
top: 20px;
left: 20px;
border: 1px solid var(--line); /* ✅ 상단 :root에 정의된 변수 사용 */
background: none;
color: var(--text); /* ✅ 상단 :root에 정의된 변수 사용 */
padding: 8px 16px;
border-radius: 20px;
cursor: pointer;
}