gristlabs_grist-core/app/client/ui/App.css
Dmitry S d2ad5edc46 (core) Cleanup removing some old unused files, fixing logo.css, and removing #grist-app.
Summary:
- Move logo.css to core, since it's not included otherwise
- Remove unused old DocList and ViewLinker files.
- Remove #grist-app div that was only serving to supply a background

Test Plan: No changes of behavior, existing tests should pass.

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D2634
2020-10-09 17:04:09 -04:00

40 lines
558 B
CSS

html {
height: 100%;
overflow: hidden;
}
body {
height: 100%;
font-family: sans-serif;
font-size: 1.2rem;
margin: 0;
padding: 0;
background: url('img/gplaypattern.png');
}
.g-help {
position: absolute;
top: 10%;
left: 10%;
height: 80%;
width: 80%;
z-index: 999;
padding: 1rem;
background-color: rgba(0, 0, 0, .8);
-webkit-border-radius: 1rem;
-moz-border-radius: 1rem;
border-radius: 1rem;
color: #fff;
font-size: 1.4rem;
overflow: auto;
}
.g-help-table {
width: 100%;
margin-bottom: 2rem;
}