2020-11-08 05:32:17 +03:00
|
|
|
import * as React from "react";
|
2020-09-11 18:13:27 +03:00
|
|
|
import * as Constants from "~/common/constants";
|
|
|
|
|
2020-11-30 08:24:22 +03:00
|
|
|
import { css, keyframes } from "@emotion/react";
|
2020-09-11 18:13:27 +03:00
|
|
|
|
|
|
|
const typewriter = keyframes`
|
2020-09-22 04:23:56 +03:00
|
|
|
0%, 100% {width: 0;}
|
2020-09-11 18:13:27 +03:00
|
|
|
20%, 80% {width: 10.2em;}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_ROOT = css`
|
|
|
|
height: 300px;
|
|
|
|
width: 500px;
|
2020-09-21 02:34:24 +03:00
|
|
|
|
2020-09-11 18:13:27 +03:00
|
|
|
@media (max-width: 600px) {
|
|
|
|
height: 230px;
|
|
|
|
width: 345px;
|
|
|
|
}
|
2020-09-21 02:34:24 +03:00
|
|
|
|
2020-09-11 18:13:27 +03:00
|
|
|
@media (max-width: 320px) {
|
|
|
|
height: 200px;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
`;
|
2020-09-21 02:34:24 +03:00
|
|
|
|
2020-09-11 18:13:27 +03:00
|
|
|
const STYLES_WINDOW = css`
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: ${Constants.font.mono};
|
|
|
|
display: block;
|
|
|
|
border-radius: 4px;
|
|
|
|
width: 100%;
|
2021-07-07 22:58:14 +03:00
|
|
|
background: ${Constants.system.black};
|
2020-09-11 18:13:27 +03:00
|
|
|
min-height: 288px;
|
|
|
|
padding: 24px;
|
|
|
|
color: ${Constants.system.white};
|
|
|
|
resize: none;
|
|
|
|
font-size: 14px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
outline: 0;
|
|
|
|
border: 0;
|
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
|
|
|
|
scrollbar-width: none;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_WINDOW_NAV = css`
|
|
|
|
border-bottom: 5px solid red;
|
|
|
|
`;
|
2020-09-21 02:34:24 +03:00
|
|
|
|
2020-09-11 18:13:27 +03:00
|
|
|
const STYLES_WINDOW_BODY = css`
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
animation: ${typewriter};
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
animation-duration: 10s;
|
|
|
|
animation-timing-function: steps(45, end);
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const CodeTerminal = () => {
|
|
|
|
return (
|
|
|
|
<div css={STYLES_ROOT}>
|
|
|
|
<div css={STYLES_WINDOW}>
|
|
|
|
<div css={STYLES_WINDOW_NAV}>Cat</div>
|
2020-11-04 20:55:48 +03:00
|
|
|
<div css={STYLES_WINDOW_BODY}>npm install --save slate-react-system</div>
|
2020-09-11 18:13:27 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default CodeTerminal;
|