mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
17 lines
303 B
CSS
17 lines
303 B
CSS
|
/* xmlterm.css: Stylesheet for XUL wrapper ../content/xmlterm.xul */
|
||
|
|
||
|
@import url(chrome://global/skin/);
|
||
|
|
||
|
@namespace html url("http://www.w3.org/1999/xhtml");
|
||
|
|
||
|
/**
|
||
|
* remove black border from iframe
|
||
|
*/
|
||
|
html|iframe {
|
||
|
min-width: 10px;
|
||
|
min-height: 10px;
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
border: none;
|
||
|
}
|