Created
June 26, 2020 19:04
-
-
Save myuon/43c660ab5e3f8d089df3c7d10d12be3c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx jsx */ | |
import React from "react"; | |
import { jsx, css } from "@emotion/core"; | |
export const GamingTextField: React.FC = () => { | |
return ( | |
<div | |
css={css` | |
background: linear-gradient( | |
217deg, | |
rgba(255, 0, 0, 1), | |
rgba(255, 0, 0, 0) 50.71% | |
), | |
linear-gradient( | |
127deg, | |
rgba(0, 255, 0, 0.8), | |
rgba(0, 255, 0, 0) 70.71% | |
), | |
linear-gradient(0deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%), | |
linear-gradient( | |
180deg, | |
rgba(255, 255, 0, 0.8), | |
rgba(255, 255, 0, 0) 70.71% | |
); | |
border-radius: 2px; | |
padding: 4px; | |
display: inline-block; | |
`} | |
> | |
<input | |
defaultValue="ゲーミングInputForm" | |
css={css` | |
font-size: 16px; | |
line-height: 24px; | |
min-height: 24px; | |
padding: 0 3px; | |
border: 0; | |
background: #222; | |
color: white; | |
`} | |
/> | |
</div> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment