mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-19 05:54:31 +01:00
48 lines
682 B
CSS
48 lines
682 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #1a1a1a;
|
|
color: #f5f5f5;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1250px;
|
|
}
|
|
|
|
h1 {
|
|
color: #f5f5f5;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.json-display {
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
background-color: #2b2b2b;
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.json-display h2 {
|
|
margin-top: 0;
|
|
color: #f5f5f5;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.json-display ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.json-display ul li {
|
|
padding: 5px 0;
|
|
}
|
|
|
|
strong {
|
|
color: #007bff;
|
|
}
|
|
|
|
.argument-box {
|
|
background: #007bff1c;
|
|
padding: 5px;
|
|
margin-top: 5px;
|
|
}
|