this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Subtle peekaboo header for the scroll-driven

+17
+17
src/app.css
··· 1954 1954 1955 1955 /* ACCOUNT STATUSES */ 1956 1956 1957 + @keyframes peekaboo-header { 1958 + from { 1959 + opacity: 0; 1960 + transform: translateY(10%); 1961 + } 1962 + to { 1963 + opacity: 1; 1964 + transform: translateY(0); 1965 + } 1966 + } 1967 + 1957 1968 .header-account { 1958 1969 font-size: 90% !important; 1959 1970 cursor: pointer; 1971 + 1972 + @supports (animation-timeline: scroll()) { 1973 + animation: peekaboo-header 1s linear both; 1974 + animation-timeline: scroll(); 1975 + animation-range: 0 150px; 1976 + } 1960 1977 } 1961 1978 .header-account div { 1962 1979 font-weight: normal;