forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamp-story-share-menu.css
112 lines (97 loc) · 3.13 KB
/
amp-story-share-menu.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import '../../amp-story/1.0/amp-story-shadow-reset.css';
@import './amp-story-share.css';
.i-amphtml-story-share-menu {
position: absolute !important;
top: 0 !important;
left: 0 !important;
height: 100% !important;
width: 100% !important;
z-index: 100003 !important; /** Above pagination-buttons. */
transform: translate3d(0, var(--story-100dvh), 0) !important;
transition-delay: 0.15s !important;
pointer-events: none !important;
visibility: hidden !important;
}
.i-amphtml-story-share-menu-visible {
transform: translate3d(0, 0, 0) !important;
transition-delay: 0s !important;
pointer-events: auto !important;
visibility: initial !important;
}
/** Black opacity overlay. */
.i-amphtml-story-share-menu::before {
content: "" !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
height: 100% !important;
width: 100% !important;
background: #000000 !important;
opacity: 0 !important;
transition: opacity 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important;
}
.i-amphtml-story-share-menu.i-amphtml-story-share-menu-visible::before {
opacity: 0.55 !important;
transition: opacity 0.2s cubic-bezier(0.0, 0.0, 0.2, 1) !important;
}
.i-amphtml-story-share-menu-container {
position: absolute !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
height: auto !important;
background: #FFF !important;
border-radius: 8px 8px 0 0 !important;
transform: translate3d(0, 100%, 0) !important;
transition: transform 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important;
}
.i-amphtml-story-share-menu-visible .i-amphtml-story-share-menu-container {
transform: translate3d(0, 0, 0) !important;
transition: transform 0.2s cubic-bezier(0.0, 0.0, 0.2, 1) !important;
}
.i-amphtml-story-share-menu-close-button {
display: none !important;
}
.i-amphtml-story-share-menu .i-amphtml-story-share-item {
height: 72px !important;
}
[desktop].i-amphtml-story-share-menu {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
[desktop] .i-amphtml-story-share-menu-container {
position: relative !important;
margin: 0 !important;
max-width: 320px !important; /* Three icons. */
opacity: 0 !important;
transform: none !important;
transition: opacity 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important;
}
[desktop].i-amphtml-story-share-menu-visible .i-amphtml-story-share-menu-container {
border-radius: 8px !important;
opacity: 1 !important;
transform: none !important;
transition: opacity 0.2s cubic-bezier(0.0, 0.0, 0.2, 1) !important;
}
[desktop] .i-amphtml-story-share-menu-close-button {
display: block !important;
position: absolute !important;
top: 0 !important;
right: 0 !important;
height: 30px !important;
width: 30px !important;
color: #9AA0A6 !important;
cursor: pointer !important;
font-size: 24px !important;
line-height: 30px !important;
text-align: center !important;
border: 0 !important;
padding: 0 !important;
background: none !important;
}
[desktop].i-amphtml-story-share-menu .i-amphtml-story-share-item {
padding: 0 !important;
height: 66px !important;
margin: 12px !important;
}