2020-02-06 19:04:18 -08:00
|
|
|
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;
|
2020-02-24 19:29:11 +00:00
|
|
|
color: var(--label_foreground);
|
2020-02-06 19:04:18 -08:00
|
|
|
`;
|
|
|
|
|
|
|
|
export const Input = styled.input`
|
|
|
|
margin: 0.3em 0 0.7em 0;
|
2020-02-24 19:29:11 +00:00
|
|
|
background-color: var(--input_background);
|
2020-02-06 19:04:18 -08:00
|
|
|
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;
|
2020-02-24 19:29:11 +00:00
|
|
|
background-color: var(--input_background);
|
2020-02-06 19:04:18 -08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
`;
|