2803c3b829
Closes #34
36 linhas
508 B
CSS
36 linhas
508 B
CSS
|
|
.chart {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
:host {
|
|
display: inline-block;
|
|
margin: 0 0 20px 20px;
|
|
padding: 20px;
|
|
box-shadow: 0 0 5px rgba(0,0,0,0.3);
|
|
background-color: #333333;
|
|
position: relative;
|
|
height: 100%;
|
|
width: 47%;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
h2 {
|
|
position: absolute;
|
|
margin: 0;
|
|
top: 10px;
|
|
right: 20px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.frequency-band {
|
|
height: 100%;
|
|
padding-top: 40px;
|
|
} |