-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrenderer.css
98 lines (90 loc) · 1.88 KB
/
renderer.css
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#snap-source-selector {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
display: flex;
background: rgba(0,0,0,0.8);
flex-direction: column;
margin: 10px;
border-radius: 20px;
border: 1px solid #000;
padding: 20px;
overflow: auto;
font-family: monospace;
z-index: 99999;
}
#snap-source-selector .close {
position: absolute;
top: 10px;
right: 10px;
font-size: 40px;
cursor: pointer;
color: #fff;
}
#snap-source-selector h4 {
font-size: 30px;
color: #fff;
margin-bottom: 1rem;
}
#snap-source-selector .screens,
#snap-source-selector .windows {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid rgba(255,255,255,0.3);
}
#snap-source-selector .source {
width: 250px;
height: 200px;
margin: 10px;
border: 1px solid #fff;
cursor: pointer;
color: #fff;
border-radius: 10px;
padding: 20px;
display: flex;
align-items: flex-end;
justify-content: center;
text-align: center;
background-repeat: no-repeat;
background-position: center;
}
#snap-source-selector .source:hover {
background-color: rgba(255,255,255,0.2);
}
#snap-source-selector .source .name {
width: 100%;
overflow: hidden;
background: #000;
max-height: 14px;
}
#snap-source-selector .source:hover .name {
max-height: auto;
}
#snap-dev-tools {
position: absolute;
top: 10px;
left: 10px;
font-size: 11px;
font-family: monospace;
color: #fff;
background: #000;
border: 1px solid rgba(255,255,255,0.5);
border-radius: 5px;
width: 16px;
height: 16px;
display: flex;
z-index: 99999;
cursor: pointer;
justify-content: center;
align-items: center;
line-height: 0;
opacity: 0.4;
}
#snap-dev-tools:hover {
opacity: 1;
}