123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- .pater {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important;
- position: fixed;
- z-index: 1000;
- right: 0;
- bottom: 0;
- display: grid;
- width: 100%;
- padding: 1em 0;
- text-align: left;
- color: white;
- background: #000;
- grid-template-columns: auto;
- grid-template-rows: auto auto auto;
- }
- .pater:hover {
- color: #333;
- }
- .pater::before {
- content: 'Our Sponsor';
- font-size: 0.75em;
- display: inline-block;
- padding: 0 0 5px 10px;
- vertical-align: middle;
- grid-area: 1 / 1 / 2 / 2;
- }
- .pater__img {
- display: none;
- background-image: url(hotjar.png);
- background-size: cover;
- grid-area: 2 / 1 / 3 / 2;
- }
- .pater__title {
- font-size: 0.85em;
- font-weight: normal;
- font-weight: bold;
- align-self: end;
- margin: 0;
- }
- .pater__title,
- .pater__description {
- align-self: start;
- padding: 10px 0 0 10px;
- grid-area: 2 / 1 / 3 / 3;
- }
- .pater__description {
- font-size: 0.85em;
- display: none;
- margin: 0;
- opacity: 0;
- }
- .pater__description strong {
- display: block;
- padding-top: 5px;
- color: #e53f3e;
- }
- @media screen and (min-width: 60em) {
- .pater {
- top: 0;
- right: 0;
- bottom: auto;
- width: calc(180px + 2em);
- margin: 0 1.5em 0 0;
- padding: 0;
- padding: 1em;
- background: #fff;
- color: #000;
- }
- .pater__img {
- display: flex;
- width: 100%;
- height: 86px;
- transition: transform 0.5s;
- }
- .pater:hover .pater__img {
- transform: translate3d(0,-10px,0);
- }
- .pater::before {
- display: block;
- text-align: left;
- padding: 0 0 10px 0;
- }
- .pater:hover .pater__title {
- opacity: 0;
- }
- .pater__title::before {
- display: none;
- }
- .pater:hover .pater__description {
- opacity: 1;
- }
- .pater__description {
- display: block;
- }
- .pater__title {
- font-size: 1em;
- padding: 20px 10px 0 10px;
- }
- .pater__title,
- .pater__description {
- padding-left: 0;
- transition: opacity 0.5s;
- grid-area: 3 / 1 / 4 / 2;
- }
- }
|