Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions 51 - Notes Maker/style.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
body{
margin: 0;
font-family: 'Shadows Into Light', cursive;
background-color: rgb(255, 240, 212);
background: linear-gradient(135deg, #4203a9, #90bafc);
}

#nav{
display: flex;
height: 60px;
padding: 0 40px;
background-color: #f3aa4c;
background: linear-gradient(135deg, #6189d8, #e387a8);
}

#logo{
Expand Down Expand Up @@ -44,8 +44,9 @@ h1{
}

input, textarea{
width: 250px;
padding: 10px;
width: 350px;
padding: 15px;
margin: 2px;
display: flex;
font-family: 'Shadows Into Semi Light', cursive;
border:none;
Expand All @@ -69,7 +70,7 @@ textarea{
}

input:focus, textarea:focus{
border-bottom: 2px solid #f3aa4c;
border-bottom: 2px solid #2a3fb7;

}

Expand All @@ -86,12 +87,12 @@ input:focus, textarea:focus{
color: white;
border: none;
margin: auto 5%;
background-color: #f3aa4c;
background-color: #1e5ca7;
align-self:flex-end;
}

#add:hover{
background-color: #d49542;
background-color: #331fca;
cursor: pointer;
}

Expand Down Expand Up @@ -142,7 +143,7 @@ input:focus, textarea:focus{
align-self: center;
padding: 7px 8px;
border: none; /* Remove borders */
color: #f3aa4c; /* White text */
color: #2e19b5; /* White text */
font-size: 18px; /* Set a font size */
cursor: pointer; /* Mouse pointer on hover */
outline: none;
Expand All @@ -154,7 +155,7 @@ input:focus, textarea:focus{

/* Darker background on mouse-over */
.btn:hover {
color: #d49542;
color: #473f84;
background-color: #ebebeb;
}

Expand Down