-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (52 loc) · 895 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (52 loc) · 895 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
48
49
50
51
52
53
54
55
56
57
58
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
background: #f1f5f9;
font-family: "Poppins", sans-serif;
}
.wrapper {
width: 550px;
text-align: center;
}
.wrapper h2 {
font-size: 20px;
}
.wrapper.height {
height: 600px;
}
.screen-btn {
width: 200px;
outline: none;
border: none;
border-radius: 2px;
padding: 5px;
background: rgb(241, 157, 0);
color: #f1f5f9;
font-size: 16px;
}
.src-preview {
display: none;
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.65);
}
.src-preview.show {
display: block;
}
.src-preview .screenshot {
width: 80%;
margin-top: 20%;
margin-left: 10%;
aspect-ratio: 16 / 9;
}
.screenshot #close-btn {
width: 20px;
position: relative;
right: -260px;
cursor: pointer;
}
.screenshot img {
width: 100%;
}