-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
dcb6184
commit ef63298
Showing
4 changed files
with
62 additions
and
1 deletion.
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
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
Empty file.
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,40 @@ | ||
body, | ||
p, | ||
div { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; | ||
} | ||
|
||
#container { | ||
width: 50vw; | ||
margin: 1rem auto; | ||
} | ||
|
||
@media screen and (max-width: 600px){ | ||
#container{ | ||
width: 90vw; | ||
} | ||
} | ||
|
||
#container h1 { | ||
text-align: center; | ||
} | ||
section { | ||
padding: 12px 0; | ||
font-weight: 400; | ||
} | ||
.paleteContainer h2 { | ||
font-size: 1.2rem; | ||
font-weight: 400; | ||
} | ||
|
||
.loadingPalete{ | ||
background-color: rgba(129, 224, 224,0.3); | ||
width: 99%; | ||
height: 2rem; | ||
border-radius: 1.2rem; | ||
padding: 0.3em 2rem; | ||
font-weight: bolder; | ||
} |