source: frontend/src/index.css@ e9b4ba9

Last change on this file since e9b4ba9 was e9b4ba9, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

prototype

  • Property mode set to 100644
File size: 616 bytes
Line 
1body {
2 margin: 0;
3 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 sans-serif;
6 -webkit-font-smoothing: antialiased;
7 -moz-osx-font-smoothing: grayscale;
8}
9
10code {
11 font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 monospace;
13}
14
15.backdrop {
16 position: fixed;
17 top: 0;
18 left: 0;
19 width: 100%;
20 height: 100vh;
21 z-index: -10;
22 background: rgba(0, 0, 0, 0.75);
23}
24
25.modal {
26 position: fixed;
27 top: 30vh;
28 left: 10%;
29 width: 80%;
30 z-index: 10000000;
31 overflow: hidden;
32}
Note: See TracBrowser for help on using the repository browser.