-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (46 loc) · 1.08 KB
/
styles.css
File metadata and controls
53 lines (46 loc) · 1.08 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
body {
margin: 0;
padding: 0;
background-color: #000;
color: #0F0;
font-family: monospace;
height: 100vh;
overflow: hidden;
}
#matrixCanvas {
position: absolute;
top: 0;
left: 0;
}
#input-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
color: #FFF;
text-align: center;
}
#input-container input, #input-container button {
margin: 5px;
padding: 10px;
font-size: 16px;
background-color: #1B4D3E;
color: #FFF;
border: 1px solid #2C6E49;
border-radius: 5px;
}
#input-container input {
width: 300px;
}
#input-container button {
background-color: #2C6E49;
}
#input-container input:focus, #input-container button:focus {
outline: none;
}
/* 드래그 앤 드롭 시각적 피드백 */
#matrixCanvas.drag-over {
border: 3px dashed #2C6E49; /* 매트릭스 테마 색상으로 점선 테두리 */
box-sizing: border-box; /* 테두리가 요소 크기에 영향을 주지 않도록 설정 */
}