-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
191 lines (162 loc) · 3.11 KB
/
main.css
File metadata and controls
191 lines (162 loc) · 3.11 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
line-height: 20px;
color: #df841f;
background-color: #f5fedc;
padding: 20px;
}
/* Header styles */
header {
background: linear-gradient(135deg, #7f93eb 0%, #764ba2 100%);
color: white;
padding: 2rem;
border-radius: 8px;
margin-bottom: 2rem;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 625;
color: #ffffff;
line-height: 1.5;
}
header p {
margin-top: 1.5rem;
font-size: 1.1rem;
opacity: 0.9;
}
/* Main content */
main {
max-width: 1200px;
margin: 0 auto;
}
/* Section styles */
section {
background: #c7ffca;
margin-bottom: 2rem;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-left: 4px solid #667eea;
}
section h2 {
color: #4d6aef;
font-size: 1.5rem;
margin-bottom: 0.5rem;
font-weight: 500;
}
section p {
color: #666;
margin-bottom: 1rem;
font-size: 1rem;
}
/* Output areas */
.output {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 6px;
padding: 1rem;
margin-top: 1rem;
}
.output h3 {
color: #495057;
font-size: 1.1rem;
margin-bottom: 0.75rem;
font-weight: 500;
}
/* List styles */
.output ul {
list-style: none;
padding: 0;
}
ul li {
background: rgb(234, 251, 255);
margin-bottom: 0.5rem;
padding: 0.75rem;
border-radius: 4px;
border-left: 3px solid #28a745;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease;
}
ul li:hover {
transform: translateX(5px);
}
ul li:last-child {
margin-bottom: 0;
}
ul#error-message li,
ul#broken-array-errors li, ul#error-handling-list li#failed-objects, ul#broken-array-list li#failed-objects {
background: rgb(234, 251, 255);
margin-bottom: 0.5rem;
padding: 0.75rem;
border-radius: 4px;
border-left: 3px solid #a72828;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease;
}
/* Error message styles */
#error-messages,
#broken-array-errors {
margin-top: 1rem;
}
.error-message {
background-color: #f8d7da;
color: #721c24;
padding: 0.75rem;
border: 1px solid #f5c6cb;
border-radius: 4px;
margin-bottom: 0.5rem;
font-family: "Courier New", monospace;
font-size: 0.9rem;
}
/* Empty state styles */
.empty-list {
color: #6c757d;
font-style: italic;
text-align: center;
padding: 1rem;
}
/* Responsive design */
@media (max-width: 768px) {
body {
padding: 10px;
}
header {
padding: 1.5rem;
}
header h1 {
font-size: 2rem;
}
section {
padding: 1rem;
}
}
/* Code-like styling for technical content */
code {
background-color: #e9ecef;
padding: 0.25rem 0.5rem;
border-radius: 3px;
font-family: "Courier New", monospace;
font-size: 0.9rem;
color: #e83e8c;
}
/* Success indicator */
.success {
color: #155724;
background-color: #d4edda;
border: 1px solid #c3e6cb;
padding: 0.75rem;
border-radius: 4px;
margin-top: 0.5rem;
}
li #passed-objects {
border-left: 3px solid #28a745;
}