2023-02-22 19:56:02 +08:00
|
|
|
const styles: { [key: string]: React.CSSProperties } = {
|
|
|
|
background: {
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "column",
|
|
|
|
backgroundColor: "#002d4c",
|
2023-02-22 20:46:16 +08:00
|
|
|
minHeight: "100vh",
|
|
|
|
paddingBottom: 128,
|
2023-02-22 19:56:02 +08:00
|
|
|
},
|
|
|
|
header: {
|
|
|
|
display: "flex",
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "center",
|
|
|
|
position: "sticky",
|
|
|
|
backgroundColor: "#0087e4",
|
|
|
|
margin: "2vh",
|
2023-02-22 20:46:16 +08:00
|
|
|
height: "8vh",
|
2023-02-22 19:56:02 +08:00
|
|
|
padding: 8,
|
|
|
|
borderRadius: 4,
|
|
|
|
},
|
|
|
|
note: {
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "column",
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "center",
|
|
|
|
backgroundColor: "#001018",
|
|
|
|
margin: "2vh",
|
|
|
|
width: "50%",
|
|
|
|
alignSelf: "center",
|
2023-02-22 20:46:16 +08:00
|
|
|
padding: 32,
|
2023-02-22 19:56:02 +08:00
|
|
|
borderRadius: 32,
|
|
|
|
},
|
|
|
|
note_content: {
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "column",
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "center",
|
|
|
|
backgroundColor: "#00293e",
|
|
|
|
width: "90%",
|
|
|
|
margin: "2vh",
|
|
|
|
padding: 8,
|
|
|
|
paddingBottom: 64,
|
|
|
|
paddingTop: 64,
|
|
|
|
borderRadius: 4,
|
|
|
|
},
|
2023-02-22 20:46:16 +08:00
|
|
|
input_notetitle: {
|
|
|
|
alignSelf: "center",
|
|
|
|
backgroundColor: "#004264",
|
|
|
|
borderRadius: 4,
|
|
|
|
border: "none",
|
|
|
|
outline: "none",
|
|
|
|
color: "white",
|
|
|
|
height: "3vh",
|
|
|
|
fontSize: "2vh",
|
|
|
|
fontWeight: "bold",
|
|
|
|
},
|
|
|
|
input_notebody: {
|
|
|
|
alignSelf: "center",
|
|
|
|
backgroundColor: "#00293e",
|
|
|
|
maxWidth: "100%",
|
|
|
|
borderRadius: 4,
|
|
|
|
border: "none",
|
|
|
|
outline: "none",
|
|
|
|
color: "white",
|
|
|
|
width: "90%",
|
|
|
|
height: "20vh",
|
|
|
|
fontSize: "2vh",
|
|
|
|
fontWeight: "bold",
|
|
|
|
},
|
2023-02-22 19:56:02 +08:00
|
|
|
button_add: {
|
|
|
|
backgroundColor: "#0dbc6a",
|
|
|
|
alignSelf: "center",
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "row",
|
2023-02-22 20:46:16 +08:00
|
|
|
width: "256x",
|
2023-02-22 19:56:02 +08:00
|
|
|
},
|
|
|
|
button_remove: {
|
|
|
|
backgroundColor: "#bc231e",
|
|
|
|
alignSelf: "center",
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "row",
|
2023-02-22 20:46:16 +08:00
|
|
|
width: "256px",
|
2023-02-22 19:56:02 +08:00
|
|
|
},
|
|
|
|
text_small: {
|
|
|
|
color: "white",
|
|
|
|
fontSize: "2vh",
|
|
|
|
fontWeight: "bold",
|
|
|
|
textAlign: "center",
|
|
|
|
},
|
|
|
|
text_medium: {
|
|
|
|
color: "white",
|
|
|
|
fontSize: "4vh",
|
|
|
|
fontWeight: "bold",
|
|
|
|
textAlign: "center",
|
|
|
|
},
|
|
|
|
flex_column: {
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "column",
|
|
|
|
},
|
|
|
|
flex_row: {
|
|
|
|
justifyContent: "center",
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "row",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default styles;
|