-
Notifications
You must be signed in to change notification settings - Fork 0
/
stimuli.css
95 lines (86 loc) · 1.49 KB
/
stimuli.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
.stimuli {
--border-radius: 0.1rem;
/* --border-radius: 3rem; */
--border-size: 0.3rem;
--padding: .5rem;
--offset: 15px;
position: fixed;
width: 200px;
height: 200px;
animation: sine_blink var(--freq) linear infinite !important;
/* animation-name : blink !important; */
/* animation: sine_blink var(--freq) linear infinite; */
/* padding: calc(var(--padding) + var(--border-size)); */
border-radius: var(--border-radius);
background-color: var(--color);
}
.like{
--color: rgb(255, 0, 0);
/* --color: rgb(0, 0, 0); */
--freq : 0.125s;
/* --freq : 1s; */
left: var(--offset);
top: var(--offset);
}
.comment{
--color: rgb(63, 189, 63);
/* --color: rgb(0, 0, 0); */
--freq : .076923s;
left: var(--offset);
bottom: var(--offset);
}
.up{
--color: rgb(0, 0, 255);
/* --color: rgb(0, 0, 0); */
--freq : .1s;
right: var(--offset);
top: var(--offset);
}
.down{
--color: rgb(0, 0, 0);
/* --color: rgb(0, 0, 0); */
--freq : .08333333s;
right: var(--offset);
bottom: var(--offset);
}
.logo{
position: fixed;
width: 200px;
height: 200px;
right: 20px;
top: 35%;
opacity: 0.4;
}
.test_headset{
position: fixed;
left: 20px;
top: 35%;
}
@keyframes sine_blink {
0% {
opacity: 0.5;
}
25% {
opacity: 1;
}
50% {
opacity: 0.5;
}
75% {
opacity: 0;
}
100% {
opacity: 0.5;
}
}
@keyframes blink {
0% {
opacity: 1.0;
}
50% {
opacity: 0.0;
}
100% {
opacity: 1.0;
}
}