1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| .stencil-app {
| display: flex;
| padding: 0;
| font-family: sans-serif;
|
| .app-stencil {
| position: relative;
| width: 300px;
| border: 1px solid #f0f0f0;
| }
|
| .app-content {
| flex: 1;
| height: 380px;
| margin-right: 8px;
| margin-left: 8px;
| box-shadow: 0 0 10px 1px #e9e9e9;
| }
| }
|
|
|