esphome-docs/_static/custom.css

48 lines
719 B
CSS
Raw Normal View History

2018-05-13 11:37:02 +02:00
.row-odd {
background-color: #f3f6f6;
}
2018-05-17 16:16:50 +02:00
table:not(.no-center) tr.row-even > td {
2018-05-13 11:37:02 +02:00
text-align: center;
}
img.component-image {
border: none;
vertical-align: middle;
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
height: 85px;
object-fit: contain;
}
table.docutils {
width: 100%;
}
2018-06-13 22:38:49 +02:00
.blink-tag {
-webkit-animation: 2s linear infinite blink_effect;
animation: 2s linear infinite blink_effect;
}
@-webkit-keyframes blink_effect {
0% {
visibility: hidden;
}
50% {
visibility: hidden;
}
100% {
visibility: visible;
}
}
@keyframes blink_effect {
0% {
visibility: hidden;
}
50% {
visibility: hidden;
}
100% {
visibility: visible;
}
}