17 lines
376 B
CSS
17 lines
376 B
CSS
/* The widget is an iframe: it only needs to be as wide as its column and to
|
|
have no border of its own. Everything else lives inside the frame. */
|
|
.pinfesta-embed {
|
|
display: block;
|
|
width: 100%;
|
|
border: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pinfesta-empty {
|
|
margin: 0;
|
|
padding: 12px 14px;
|
|
border: 1px dashed currentColor;
|
|
border-radius: 8px;
|
|
font-size: 0.9em;
|
|
opacity: 0.75;
|
|
}
|