-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (116 loc) · 2.12 KB
/
style.css
File metadata and controls
131 lines (116 loc) · 2.12 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
127
128
129
130
131
/* 전역 스타일 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
Arial, sans-serif;
background: #fff;
color: #333;
height: 100vh;
overflow: hidden;
}
/* 로딩 컨테이너 */
.loading-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 20px;
}
.loading-content {
text-align: center;
max-width: 400px;
width: 100%;
}
.emoji-icon {
font-size: 80px;
margin-bottom: 20px;
animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
/* 타이틀과 메시지 */
h2 {
font-size: 24px;
font-weight: 600;
margin-bottom: 10px;
}
p {
font-size: 16px;
color: #666;
margin-bottom: 30px;
}
#scan-port {
font-weight: bold;
color: #764ba2;
}
/* 프로그레스 바 */
.progress {
height: 4px;
background: #eee;
border-radius: 2px;
overflow: hidden;
margin-bottom: 30px;
}
.progress-bar {
height: 100%;
background: #764ba2;
border-radius: 2px;
width: 0;
transition: width 0.3s ease;
}
/* 에러 패널 */
.error-panel {
background: #f9f9f9;
border: 1px solid #eee;
border-radius: 8px;
padding: 20px;
margin-top: 20px;
}
.error-message {
color: #ff6b6b;
font-weight: 500;
margin-bottom: 15px;
}
.btn-retry {
background: #764ba2;
color: #fff;
border: none;
padding: 10px 24px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-retry:hover {
background: #663b92;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* 네트워크 정보 */
.network-info {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 12px;
opacity: 0.7;
}
/* 유틸리티 클래스 */
.hidden {
display: none !important;
}