-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathHello-Lucy.css
47 lines (40 loc) · 986 Bytes
/
Hello-Lucy.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
@import url('https://fonts.googleapis.com/css?family=Muli:600');
/* color of the pulsing microphone icon */
@-webkit-keyframes Hello-Lucy-pulse {
0% { color: #33FF42; }
50% { color: #000; }
100% { color: #33FF42; }
}
.Hello-Lucy .pulse {
-webkit-animation: Hello-Lucy-pulse 1s infinite;
animation: Hello-Lucy-pulse 1s infinite;
}
.Hello-Lucy .icon {
margin-right: 5px;
}
.Hello-Lucy-blur {
-webkit-filter: blur(4px) brightness(10%);
filter: blur(4px) brightness(10%);
}
/* help screen columns modification by @cowboysdude :-) */
.Hello-Lucy .modal {
columns: 4;
-webkit-columns: 4;
-moz-columns: 4;
text-align: center;
margin-top: 50px;
}
/* help screen font and color */
.Hello-Lucy .modal ul {
margin: 0;
font-size: 17px;
list-style-type: none;
font-family: Muli;
color: cyan;
}
/* help screen heading font and color */
.Hello-Lucy .medium {
/* font-size: 17px; */
font-family: Muli;
color: #b4b1e8;
}