-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmogo.css
More file actions
126 lines (118 loc) · 2.4 KB
/
mogo.css
File metadata and controls
126 lines (118 loc) · 2.4 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
121
122
123
124
125
126
/* 1️⃣ [수정됨] 변수 정의 추가 (:root) */
:root {
--line: rgba(75, 85, 99, 0.6); /* 테두리용 회색 */
--text: #e5e7eb; /* 글자용 흰색 */
}
body {
margin: 0;
padding: 0;
background: radial-gradient(circle at top, #0a0f24, #000);
font-family: 'Noto Sans KR', sans-serif;
color: #e5e7eb;
}
/* 2️⃣ [수정됨] 뒤로가기 버튼 (이제 변수가 인식되어 잘 보입니다) */
.back-btn {
position: absolute;
top: 20px;
left: 20px;
border: 1px solid var(--line);
background: none;
color: var(--text);
padding: 8px 16px;
border-radius: 20px;
cursor: pointer;
transition: all 0.2s ease;
}
.back-btn:hover {
border-color: #38bdf8;
color: #38bdf8;
background: rgba(56, 189, 248, 0.1);
}
.wrap {
max-width: 900px;
margin: 0 auto;
padding: 30px 20px;
}
.header {
text-align: center;
margin-bottom: 30px;
}
.header h1 {
font-size: 32px;
background: linear-gradient(to right, #38bdf8, #60a5fa, #a855f7);
/* 3️⃣ [수정됨] 표준 속성 추가 */
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.header p {
color: #94a3b8;
font-size: 14px;
}
.card {
background: rgba(15, 23, 42, 0.95);
border-radius: 16px;
padding: 20px;
margin-bottom: 20px;
border: 1px solid rgba(148, 163, 184, 0.3);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
form {
display: flex;
flex-direction: column;
gap: 14px;
}
label {
font-weight: bold;
font-size: 14px;
}
input,
select {
padding: 10px;
border-radius: 8px;
border: 1px solid #475569;
background: rgba(3, 7, 18, 0.9);
color: #e2e8f0;
font-size: 14px;
}
.checkbox-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
font-size: 13px;
}
.checkbox-group label {
background: rgba(30, 41, 59, 0.8);
padding: 6px 10px;
border-radius: 8px;
cursor: pointer;
}
.btn-primary {
background: linear-gradient(to right, #2563eb, #38bdf8);
border: none;
color: #020617;
padding: 12px;
border-radius: 999px;
font-size: 15px;
font-weight: bold;
cursor: pointer;
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(56, 189, 248, 0.7);
}
.result-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.result-card {
background: rgba(17, 24, 39, 0.8);
border-radius: 10px;
padding: 10px;
border: 1px solid rgba(71, 85, 105, 0.6);
}
.result-card h3 {
color: #60a5fa;
margin-bottom: 5px;
}