• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1:host {
2  display: flex;
3  flex: 0 0 100%;
4  flex-direction: column;
5}
6
7.wrapper {
8  position: relative;
9  margin: 16px;
10  padding: 16px;
11  display: flex;
12  flex-direction: column;
13
14  border-radius: 12px;
15  border: 1px solid #c4c6d0;
16}
17
18.label {
19  position: absolute;
20  top: -12px;
21  padding: 0 16px;
22  background: var(--mat-app-background-color);
23}
24
25.screenshot-container {
26  width: fit-content;
27
28  border-radius: 8px;
29  background-color: black;
30  padding: 12px;
31}
32img.screenshot {
33  width: fit-content;
34  background-image: linear-gradient(45deg, #808080 25%, transparent 25%),
35    linear-gradient(-45deg, #808080 25%, transparent 25%),
36    linear-gradient(45deg, transparent 75%, #808080 75%),
37    linear-gradient(-45deg, transparent 75%, #808080 75%);
38  background-size: 20px 20px;
39  background-position:
40    0 0,
41    0 10px,
42    10px -10px,
43    -10px 0px;
44}
45