mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-04-28 12:15:27 +08:00
Add image switcher
This commit is contained in:
@@ -97,3 +97,35 @@ code {
|
||||
color: $text-gray;
|
||||
}
|
||||
}
|
||||
|
||||
.sixteen-by-nine {
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
display: block;
|
||||
content: "";
|
||||
width: 100%;
|
||||
padding-top: (9 / 16) * 100%;
|
||||
}
|
||||
|
||||
> .content {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.switcher-input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.switcher-item {
|
||||
transition: opacity .15s ease-in-out;
|
||||
opacity: 0;
|
||||
|
||||
input:checked + & {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user