GP / static /styles.css
woletee
this is the commit for adding the gp interface
ded89f7
raw
history blame
1.21 kB
body {
font-family: Arial, sans-serif;
background-color: #111;
color: white;
text-align: center;
}
h1, h2, h3 {
color: #FFD700;
}
.grid-container {
display: flex;
justify-content: center;
gap: 50px;
margin-bottom: 30px;
}
.grid-wrapper {
background-color: #222;
padding: 15px;
border-radius: 10px;
box-shadow: 0 0 10px #fff3;
}
.grid {
display: inline-block;
}
.grid-row {
display: flex;
}
.cell {
width: 30px;
height: 30px;
border: 1px solid #333;
}
/* ARC Color Mapping: You can customize these */
/* You can customize these */
.color-0 { background-color: #000000; } /* black */
.color-1 { background-color: #0074D9; } /* strong blue */
.color-2 { background-color: #FF4136; } /* vivid red */
.color-3 { background-color: #2ECC40; } /* bright green */
.color-4 { background-color: #FFDC00; } /* yellow */
.color-5 { background-color: #AAAAAA; } /* gray */
.color-6 { background-color: #F012BE; } /* hot pink */
.color-7 { background-color: #FF851B; } /* orange */
.color-8 { background-color: #7FDBFF; } /* light blue */
.color-9 { background-color: #870C25; } /* dark red */
.color-10 { background-color: #FFFFFF; } /* white */