-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
95 lines (83 loc) · 2.24 KB
/
css.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
/*
* Best practices for full screen renderer
*/
@font-face {
font-family: 'Lekton';
src: url(Lekton/Lekton-Regular.ttf);
}
body
{
background-color: rgba(255,255,255,1);
margin: 0 -3px 0 0; //this fixes a browser bug that creates useless scrollbars
font-family: sans-serif;
overflow:hidden; //prevent scrollbars
height: 100vh;
font-family: 'Lekton';
}
//create a Selector ID with the same name then the renderer in the patch to reference it in the style sheet
#RendererMain canvas.vvvv-js-generated-renderer{display:block; position:absolute;z-index:1;pointer-events: none;}
//'pointer-events: none' can be used to overlay a renderer with alpha over a webpage and still let clicks come through to underlying elements!
.CanvasDiv
{
position:absolute;
top:0;
left:0;
width: 100vw; //100% view width
height: 100vh; //100% view height
z-index:1
}
.main{position:absolute;}
.main a:link
{
color: rgba(0,0,0,1);
//background-color: rgba(240,50,50,0.9);
text-decoration: underline;
}
.main a:visited
{
color: rgba(0,0,0,1);
//background-color: rgba(240,50,50,0.9);
text-decoration: underline;
}
.TextDiv
{
position:absolute;
top:0;
left:0;
width: 100vw;
height: 100vh;
background-color: rgba(255,255,255,0);
z-index: -1;
}
.tracks
{
position: absolute;
border:1px solid rgba(255,0,0,1);
padding: 15px;
background: none repeat scroll 0% 0% #000;
border-radius:30px;
color: rgba(240,240,240,1);
text-align:justify;
width: 40%;
height: 80%;
overflow-x: hidden;
overflow-y: scroll;
z-index: 3;
Transform: matrix(0.0000,0.0000,0.0000,0.0000,0, 0);
Transform-origin:center;
}
.buttons
{
position: absolute;
border:1px solid rgba(255,0,0,1);
padding: 15px;
background: none repeat scroll 0% 0% #000;
border-radius:30px;
color: rgba(240,240,240,1);
text-align:justify;
width: 30px;
height: 30px;
z-index: 3;
Transform: matrix(0.0000,0.0000,0.0000,0.0000,0, 0);
Transform-origin:center;
}