lesson5
This commit is contained in:
46
nodeJS/Learning/05/public/css/main.css
Normal file
46
nodeJS/Learning/05/public/css/main.css
Normal file
@@ -0,0 +1,46 @@
|
||||
/* 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;
|
||||
}
|
||||
BIN
nodeJS/Learning/05/public/images/favicon.ico
Normal file
BIN
nodeJS/Learning/05/public/images/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
nodeJS/Learning/05/public/images/image.png
Normal file
BIN
nodeJS/Learning/05/public/images/image.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 185 KiB |
Reference in New Issue
Block a user