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 113 114 115 116 117 118 119 120 121 122 123 124
|
@keyframes heart {
0%,
40%,
80%,
100% {
transform: scale(1);
}
20%,
60% {
transform: scale(1.15);
}
}
@keyframes vibrate {
0%, 2%, 4%, 6%, 8%, 10%, 12%, 14%, 16%, 18% {
-webkit-transform: translate3d(-2px, 0, 0);
transform: translate3d(-2px, 0, 0);
}
1%, 3%, 5%, 7%, 9%, 11%, 13%, 15%, 17%, 19% {
-webkit-transform: translate3d(2px, 0, 0);
transform: translate3d(2px, 0, 0);
}
20%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.heart {
color: #e91e63;
}
.pulse {
animation: heart 1000ms infinite;
}
.vibrate {
animation: vibrate 2000ms infinite;
}
.new-feature svg {
fill: var(--md-accent-fg-color) !important;
}
a.insiders {
color: #e91e63;
}
.sponsorship-list {
width: 100%;
}
.sponsorship-item {
border-radius: 100%;
display: inline-block;
height: 1.6rem;
margin: 0.1rem;
overflow: hidden;
width: 1.6rem;
}
.sponsorship-item:focus, .sponsorship-item:hover {
transform: scale(1.1);
}
.sponsorship-item img {
filter: grayscale(100%) opacity(75%);
height: auto;
width: 100%;
}
.sponsorship-item:focus img, .sponsorship-item:hover img {
filter: grayscale(0);
}
.sponsorship-item.private {
background: var(--md-default-fg-color--lightest);
color: var(--md-default-fg-color);
font-size: .6rem;
font-weight: 700;
line-height: 1.6rem;
text-align: center;
}
.mastodon {
color: #897ff8;
border-radius: 100%;
box-shadow: inset 0 0 0 .05rem currentcolor;
display: inline-block;
height: 1.2rem !important;
padding: .25rem;
transition: all .25s;
vertical-align: bottom !important;
width: 1.2rem;
}
.premium-sponsors {
text-align: center;
}
#silver-sponsors img {
height: 140px;
}
#bronze-sponsors img {
height: 140px;
}
#bronze-sponsors p {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#bronze-sponsors a {
display: block;
flex-shrink: 0;
}
.sponsors-total {
font-weight: bold;
}
|