-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·114 lines (100 loc) · 1.94 KB
/
styles.css
File metadata and controls
executable file
·114 lines (100 loc) · 1.94 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
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
h1 {
margin-bottom: 20px;
font-size: 32px;
color: #333;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
background: #ffffff;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.content {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.matrix {
display: grid;
grid-template-columns: repeat(5, 40px);
grid-template-rows: repeat(8, 40px);
gap: 5px;
margin-right: 20px;
padding: 10px;
background-color: #e6f0ff;
border-radius: 10px;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.matrix button {
width: 40px;
height: 40px;
background-color: white;
border: 2px solid #ddd;
cursor: pointer;
transition: background-color 0.2s, border-color 0.2s;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.matrix button.active {
background-color: #4d79ff;
border-color: #4d79ff;
}
.controls-output {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.controls {
display: flex;
gap: 20px;
margin-bottom: 20px;
padding-left: 10px;
}
.controls button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
transition: background-color 0.3s;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.controls button:hover {
background-color: #0056b3;
}
.output {
text-align: left;
font-size: 18px;
}
h2 {
font-size: 20px;
color: #333;
margin-bottom: 10px;
}
pre {
background: #f8f8f8;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
color: #333;
white-space: pre-wrap;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
font-family: "Fira Code", monospace;
}
footer {
margin-top: 5px;
font-size: 15px;
color: #666;
}