-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/*☆ this is so cleannnnnn ☆*/ | ||
body { | ||
margin: 25px; | ||
background-color: #291814; | ||
font-family: Verdana, sans-serif; | ||
font-size: 14px; | ||
} | ||
|
||
h1 { | ||
font-size: 35px; | ||
font-weight: normal; | ||
margin-top: 5px; | ||
color: #FFE5B4; | ||
text-align: center; | ||
} | ||
|
||
p { | ||
font-size: 20px; | ||
font-weight: normal; | ||
margin-top: 5px; | ||
color: #FFE5B4; | ||
text-align: center; | ||
} | ||
|
||
b { | ||
font-size: 20px; | ||
font-weight: normal; | ||
margin-top: 5px; | ||
color: #FFE5B4; | ||
text-align: center; | ||
} | ||
|
||
a { | ||
font-size: 20px; | ||
font-weight: normal; | ||
margin-top: 5px; | ||
color: #FFE5B4; | ||
text-align: center; | ||
} | ||
|
||
button { | ||
background-color: #A59079; | ||
border-radius: 12px; | ||
border: none; | ||
color: #FFE5B4; | ||
padding: 10px 28px; | ||
font-size: 20px; | ||
text-align: center; | ||
} | ||
|
||
button:hover { | ||
box-shadow: 0 12px 16px 0 rgb(255, 229, 180), 0 17px 50px 0 rgb(165, 144, 121); /* this was copy and pasted from another site */ | ||
transform: scale(1.2) | ||
} | ||
|
||
button:active { | ||
transform: scale(.8); /* make button smaller on click */ | ||
} | ||
|
||
.navbar { | ||
background-color: #FFE5B4; | ||
margin: auto; | ||
width: 50%; | ||
border: none; | ||
padding: 10px 28px; | ||
text-align: center; | ||
padding: 10px 28px; | ||
} |