27 lines
414 B
CSS
27 lines
414 B
CSS
|
.Computerbox {
|
||
|
border: 1px solid currentColor;
|
||
|
padding: 8px;
|
||
|
background-color: var(--background);
|
||
|
box-shadow: var(--inset) var(--inset) 0 var(--foreground);
|
||
|
|
||
|
.ComputerboxDesc {
|
||
|
h2 {
|
||
|
font-family: var(--font-text-top);
|
||
|
}
|
||
|
|
||
|
h2, p {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
div:first-child {
|
||
|
text-align: start;
|
||
|
}
|
||
|
div:last-child {
|
||
|
text-align: end;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|