-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
53 lines (49 loc) · 820 Bytes
/
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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
html {
flex-direction: column;
}
body {
flex-direction: row;
overflow: hidden;
touch-action: none;
background: black;
}
canvas#sketch2 {
padding-left: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
margin:0px;
width: 60vw !important;
height: auto !important;
max-width: 100% !important;
max-height: 100% !important;
display: flex;
}
canvas, video {
padding-left: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
margin-left: auto;
margin-right: auto;
margin-top: 0;
margin-bottom: 0;
width: auto !important;
height: 80vh !important;
display: block;
}
.text {
text-align: center;
}
input {
box-shadow: 10px;
}