-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
69 lines (58 loc) · 1.02 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Noto Sans", sans-serif;
}
.spacer {
height: 10px;
}
html, body, main {
width: 100%;
height: 100%;
}
main {
background-image: url("./assets/web/background.png");
background-size: cover;
background-position: center bottom;
background-color: #287dff;
background-blend-mode: multiply;
}
.white-overlay {
background: #ffffff8a;
background: linear-gradient(90deg, #ffffff8a calc(30vw - 20px), #ffffff00 30vw);
}
section {
padding: 5px;
padding-right: 25px;
}
section {
position: fixed;
left: 0;
top: 0;
width: 30vw;
height: 100%
}
#canvas-wrapper {
position: fixed;
top: 0;
right: 0;
width: 70vw;
height: 100%;
}
#preview-wrapper {
width: 30vw;
height: 60vh;
position: absolute;
bottom: 0;
left: 0;
}
.title-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}
.gh-icon {
width: 1.5em;
height: 1.5em;
}