-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (72 loc) · 1.34 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
70
71
72
73
74
75
76
77
78
79
80
81
*{
color: #fff;
}
body{
margin: 0;
background-color: #000;
font-family: 'Archivo Black', sans-serif;
max-height: 100vh;
/*display: flex;
justify-content: space-around;*/
}
canvas{
/*spiegel input*/
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
.dots-layout{
width: auto;
height: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
z-index: 5;
/*justify-content: space-around;*/
}
.dot{
width: 5em;
height: 5em;
border-radius: 50%;
border: 5px #000 solid;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
background-color: #fff;
margin: 0;
opacity: 1;
}
.widget{
border-radius: 2.5rem;
border: 5px #000 solid;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
background-color: #fff;
color: #000;
min-height: 10rem;
min-width: 10rem;
padding: 1.6em;
position: absolute;
z-index: 10;
align-self: flex-start;
}
.widget > * {
color: #000
}
.speechbubble{
font-size: 3em;
margin-top: 10rem;
width: 100%;
height: 20rem;
}
/*Interaction*/
.hide{
opacity: 0;
}
/*canvas/ml5 interaction*/
#canvascontainer{
position: absolute;
z-index: 0;
}