mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-13 06:28:59 +00:00
32 lines
656 B
SCSS
32 lines
656 B
SCSS
div.details-block {
|
|
width: 100%;
|
|
display: block;
|
|
margin: 0 0 1.5em 0;
|
|
|
|
.details-block-item {
|
|
background-color: white;
|
|
padding: 4px 16px;
|
|
margin: 8px;
|
|
border: 1px solid rgba(0, 0, 0, .12);
|
|
box-shadow: rgba(0,0,0,0.06) 0 0 10px;
|
|
border-radius: 8px;
|
|
|
|
.details-block-title {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
line-height: 21px;
|
|
cursor: pointer;
|
|
height: 54px;
|
|
justify-content: space-between;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: white;
|
|
border: 0px;
|
|
width: 100%;
|
|
}
|
|
.details-block-content {
|
|
margin: 4px 32px 12px 0;
|
|
}
|
|
}
|
|
}
|