26 lines
359 B
CSS
26 lines
359 B
CSS
#pyramids {
|
|
width: 700px;
|
|
}
|
|
.inverted {
|
|
background-color: #ffffee;
|
|
padding: 3px;
|
|
}
|
|
body {
|
|
background-color: #333333;
|
|
color: #ffffee;
|
|
}
|
|
h3.subtitle {
|
|
color: rgb(253, 141, 60);
|
|
text-align: center;
|
|
}
|
|
a {
|
|
color: rgb(253, 141, 60);
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
#pyramidControls {
|
|
display: grid;
|
|
grid-template-columns: 1fr 9fr;
|
|
}
|