mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-27 15:22:56 +08:00
143 lines
2.9 KiB
TypeScript
143 lines
2.9 KiB
TypeScript
import { createGlobalStyle } from "styled-components";
|
|
|
|
const GlobalStyle = createGlobalStyle`
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
color: ${({ theme }) => theme.FULL_WHITE};
|
|
font-family: 'Catamaran', sans-serif;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
scroll-behavior: smooth;
|
|
height: 100%;
|
|
|
|
background-color: #000000;
|
|
opacity: 1;
|
|
background-image: radial-gradient(#414141 0.5px, #000000 0.5px);
|
|
background-size: 10px 10px;
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
background-color: #000000;
|
|
opacity: 1;
|
|
background-image: radial-gradient(#414141 0.5px, #000000 0.5px);
|
|
background-size: 15px 15px;
|
|
}
|
|
}
|
|
|
|
* {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: unset;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
outline: none;
|
|
background: transparent;
|
|
width: fit-content;
|
|
margin: 0;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#carbonads * {
|
|
margin: initial;
|
|
padding: initial;
|
|
line-height: initial;
|
|
}
|
|
|
|
#carbonads {
|
|
--carbon-font-size: 16px;
|
|
--carbon-padding-size: 12px;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#carbonads {
|
|
display: inline-block;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue',
|
|
Helvetica, Arial, sans-serif;
|
|
font-size: var(--carbon-font-size);
|
|
}
|
|
|
|
#carbonads > span {
|
|
|
|
min-width: 18.75em;
|
|
max-width: clamp(18.75em, 22.5em, 24.5em);
|
|
min-height: 100px;
|
|
background-color: ${({ theme }) => theme.BACKGROUND_SECONDARY};
|
|
box-shadow: 0 0 1px hsl(0deg 0% 0% / 0.085),
|
|
0 0 2px hsl(0deg 0% 0% / 0.085),
|
|
0 0 4px hsl(0deg 0% 0% / 0.085),
|
|
0 0 8px hsl(0deg 0% 0% / 0.085);
|
|
}
|
|
|
|
#carbonads a {
|
|
text-decoration: none;
|
|
color: ${({ theme }) => theme.INTERACTIVE_NORMAL};
|
|
}
|
|
|
|
#carbonads a:hover {
|
|
color: ${({ theme }) => theme.INTERACTIVE_HOVER};
|
|
}
|
|
|
|
#carbonads span {
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
#carbonads .carbon-wrap {
|
|
display: flex;
|
|
}
|
|
|
|
#carbonads .carbon-img {
|
|
height: 100px;
|
|
width: 130px;
|
|
}
|
|
|
|
#carbonads .carbon-img img {
|
|
display: block;
|
|
}
|
|
|
|
#carbonads .carbon-text {
|
|
padding: 0.625em 1em;
|
|
|
|
font-size: 0.8125em;
|
|
margin-bottom: 1em;
|
|
line-height: 1.4;
|
|
text-align: left;
|
|
}
|
|
|
|
#carbonads .carbon-poweredby {
|
|
display: block;
|
|
padding: 6px 8px;
|
|
color: ${({ theme }) => theme.TEXT_NORMAL};
|
|
background: ${({ theme }) => theme.BACKGROUND_TERTIARY};
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1ch;
|
|
font-weight: 600;
|
|
font-size: 0.5em;
|
|
line-height: 1;
|
|
border-top-left-radius: 3px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
`;
|
|
|
|
export default GlobalStyle;
|