24 lines
314 B
CSS
24 lines
314 B
CSS
|
html, body {
|
||
|
font-family: 'Roboto', 'Helvetica', sans-serif;
|
||
|
}
|
||
|
header.logo {
|
||
|
text-align: center;
|
||
|
}
|
||
|
header.logo img{
|
||
|
margin-top: 10px;
|
||
|
width:75%;
|
||
|
}
|
||
|
|
||
|
container > iframe{
|
||
|
border: 0 solid #000;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|