51 lines
885 B
CSS
51 lines
885 B
CSS
/* Style each tag in an html */
|
|
/* describe to chatgpt what you want, good at css, or css reference */
|
|
|
|
/* font: sans-serif for headers, serif for paragraphs, mono for whatever */
|
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Cutive+Mono&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
|
|
|
|
body {
|
|
background-color: rgb(232, 163, 217);
|
|
color: rgb(146, 0, 24);
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
font-family: "Cutive Mono", monospace;
|
|
}
|
|
|
|
p {
|
|
font-family: "EB Garamond", serif;
|
|
}
|
|
|
|
.title-text {
|
|
font-size: 30px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.form-submit {
|
|
background-color: rgb(151, 227, 29);
|
|
}
|
|
|
|
.form-submit:hover {
|
|
background: rgb(62, 100, 2);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.todo-input {
|
|
background: rgb(16, 232, 236);
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: space-around;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex-wrap: nowrap;
|
|
}
|