27 lines
276 B
CSS
27 lines
276 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
a {
|
|
color: #03C;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.hide {
|
|
display: none;
|
|
}
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
}
|
|
#render-view {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|