You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
790 B
CSS

2 years ago
header {
padding: 32px;
max-width: 60ch;
3 years ago
}
2 years ago
header h1,
header p {
margin: 0;
}
.container{
display: block;
2 years ago
padding: 32px;
3 years ago
}
2 years ago
2 years ago
.stream,
.streams{
/* white-space: nowrap; */
position: relative;
display: inline-block;
2 years ago
width: 40ch;
position: relative;
}
2 years ago
.text-container {
position: absolute;
2 years ago
top: 0;
left: 0;
display: inline-block;
width: 40ch;
pointer-events: all;
background: linear-gradient(0.25turn, rgba(255,255,255,0), rgba(255,255,255,0.5));
2 years ago
}
.text-container:hover{
background-color: white;
color: var(--background);
z-index: 100;
}
2 years ago
.author {
position: relative;
font-size: 1rem;
background-color: white;
}
3 years ago
.branches {
overflow-x: auto;
overflow-y: hidden;
}
.branch {
white-space: nowrap;
}
a:hover {
color: currentColor;
}