-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp-frame-style.css
More file actions
47 lines (39 loc) · 843 Bytes
/
Copy pathapp-frame-style.css
File metadata and controls
47 lines (39 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#app-frame {
border: 0px;
width: 100%;
height: 100%;
}
#app-container {
z-index: 9999999;
position: fixed;
width: 600px;
height: 400px;
border-radius: 8px;
padding: 20px;
margin: 1rem;
background-color: rgba(255, 255, 255, 0.8);
font-size: 20px;
font-family: sans-serif;
box-shadow: 0 1px 2px rgba(0,0,0,0.07),
0 2px 4px rgba(0,0,0,0.07),
0 4px 8px rgba(0,0,0,0.07),
0 8px 16px rgba(0,0,0,0.07),
0 16px 32px rgba(0,0,0,0.07),
0 32px 64px rgba(0,0,0,0.07);
touch-action: none;
/* This makes things *much* easier */
box-sizing: border-box;
opacity: 0;
}
#notepad-content {
overflow: scroll;
}
.show {
/* opacity: 1;
transition: opacity 1000ms;
*/
}
.hide {
/* opacity: 0;
transition: opacity 1000ms;*/
}