-
Notifications
You must be signed in to change notification settings - Fork 29
/
response_output.css
96 lines (85 loc) · 1.57 KB
/
response_output.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
96
/* Original CSS */
html,
body {
background: transparent;
margin: 0;
}
#popout {
bottom: 0;
box-sizing: border-box;
font-family: Roboto, sans-serif;
font-size: 40px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
transform: translateZ(0);
transition: opacity 500ms;
transition-timing-function: ease-in-out;
overflow: hidden;
width: 100%;
}
#popout div {
font-family: Roboto, arial, sans-serif;
}
.popout-shadow {
background-image: linear-gradient(
-180deg,
rgb(0 0 0 / 0%) 0%,
rgb(0 0 0 / 80%) 100%
);
height: 5.4em;
width: 100%;
}
.popout-overflow-shadow-down {
background-image: linear-gradient(
-180deg,
rgb(0 0 0 / 0%) 0%,
rgb(0 0 0 / 80%) 100%
);
bottom: 144px;
display: none;
position: absolute;
height: 48px;
width: 100%;
z-index: 100;
}
.popout-overflow-shadow-up {
background-image: linear-gradient(
-180deg,
rgb(25 25 25 / 97%) 50%,
rgb(0 0 0 / 0%) 100%
);
display: none;
top: 5.4em;
height: 48px;
position: absolute;
width: 100%;
z-index: 100;
}
.popout-content {
background-color: rgb(25 25 25 / 97%);
padding-right: 28px;
width: 100%;
overflow: hidden;
}
.popout-content:hover,
.popout-content:focus {
outline: none;
}
.popout-asbar:hover,
.popout-asbar:focus {
outline: none;
}
.inactive {
opacity: 0.4;
}
#carousel-container {
left: 0;
overflow-x: initial;
transition: 300ms ease-in-out;
transform: translateZ(0);
}
/* Add here your overriding CSS */
#assistant-main-cards .popout-asbar {
display: none;
}