WIP on add/edit feed page (#4)

Mostly style tweaks
This commit is contained in:
2024-04-08 07:31:32 -04:00
parent 7d30454d90
commit c89e6af346
3 changed files with 39 additions and 14 deletions

View File

@@ -5,11 +5,12 @@ html {
body {
margin: 0;
font-size: 1rem;
background-color: #eeeeee;
background: linear-gradient(135deg, #eeeeff, #ddddff, #eeeeff, #ccccff);
/* background-color: #eeeeee; */
}
header {
padding: 0 1rem .5rem 1rem;
background: linear-gradient(#000064, #000048, #000032);
background: linear-gradient(#000032, #000048, #000064);
border-bottom-left-radius: .5rem;
border-bottom-right-radius: .5rem;
color: white;
@@ -33,3 +34,21 @@ header {
main {
padding: 0 .5rem;
}
article {
max-width: 60rem;
margin: auto;
}
input[type=url], input[type=text] {
width: 50%;
font-size: 1rem;
padding: .25rem;
border-radius: .25rem;
}
button {
font-size: 1rem;
background-color: navy;
color: white;
padding: .25rem 1rem;
border-radius: .25rem;
cursor: pointer;
}