c119c44c13
When this is merged https://gitlab.com/ligolang/ligo-web-ide/ will be marked as deprecated. This MR does not hook up the webide build to the main CI. The CI integration will come in a subsequent MR for the sake of making review easier.
48 lines
934 B
TypeScript
48 lines
934 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const Group = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`;
|
|
|
|
export const HGroup = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
`;
|
|
|
|
export const Label = styled.label`
|
|
font-size: 1em;
|
|
color: rgba(153, 153, 153, 1);
|
|
`;
|
|
|
|
export const Input = styled.input`
|
|
margin: 0.3em 0 0.7em 0;
|
|
background-color: #eff7ff;
|
|
border-style: none;
|
|
border-bottom: 5px solid #e1f1ff;
|
|
padding: 0.5em;
|
|
font-size: 1em;
|
|
font-family: Menlo, Monaco, 'Courier New', monospace;
|
|
outline: none;
|
|
|
|
&:focus {
|
|
background-color: #e1f1ff;
|
|
}
|
|
`;
|
|
|
|
export const Textarea = styled.textarea`
|
|
resize: vertical;
|
|
margin: 0.3em 0 0.7em 0;
|
|
background-color: #eff7ff;
|
|
border-style: none;
|
|
border-bottom: 5px solid #e1f1ff;
|
|
padding: 0.5em;
|
|
font-size: 1em;
|
|
font-family: Menlo, Monaco, 'Courier New', monospace;
|
|
outline: none;
|
|
|
|
&:focus {
|
|
background-color: #e1f1ff;
|
|
}
|
|
`;
|