2020-02-01 13:33:14 +05:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
export const BannerWrap = styled.a`
|
|
|
|
margin-bottom: 0;
|
2020-08-02 22:10:42 +04:00
|
|
|
//background: #101010;
|
|
|
|
//color: white;
|
|
|
|
background: #ffe0b2;
|
|
|
|
color: #d8362a;
|
|
|
|
font-weight: 600;
|
2020-02-01 13:33:14 +05:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 10px 15px;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
transition: all 200ms;
|
|
|
|
|
|
|
|
&:hover {
|
2020-08-02 22:10:42 +04:00
|
|
|
background: #ffd698;
|
|
|
|
color: #bd2015;
|
2020-02-01 13:33:14 +05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-02-01 17:08:34 +04:00
|
|
|
export const SponsorLogo = styled.img`
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 10px;
|
2020-02-01 13:33:14 +05:00
|
|
|
position: relative;
|
2020-02-01 17:08:34 +04:00
|
|
|
top: -2px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const EmojiWrap = styled.img`
|
|
|
|
height: 18px;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
margin: 0 6px 0 6px;
|
2020-02-01 13:33:14 +05:00
|
|
|
`;
|
|
|
|
|
|
|
|
export const CloseSponsor = styled.span`
|
|
|
|
text-shadow: none;
|
|
|
|
margin-right: 15px;
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
2020-08-02 22:10:42 +04:00
|
|
|
color: #101010;
|
2020-02-01 13:33:14 +05:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
2020-08-02 22:10:42 +04:00
|
|
|
color: #101010;
|
2020-02-01 13:33:14 +05:00
|
|
|
}
|
2020-08-02 22:10:42 +04:00
|
|
|
`;
|