-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #642 from BinaryDigitCode/main
added Nord theme with Night and Snow color palette
- 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 @@ | ||
/* | ||
Theme: Nord Winter (https://www.nordtheme.com) | ||
Author: BinaryDigit (binarydigit.omg.lol) | ||
License: Public domain | ||
Version: 1.0 | ||
Description: An arctic, north-bluish color palette based on Nord | ||
*/ | ||
|
||
/*Looks great with {snowfall}*/ | ||
|
||
@import url(https://fonts.bunny.net/css?family=albert-sans); | ||
|
||
* { | ||
font-family: 'Albert Sans', sans-serif; | ||
} | ||
|
||
body { | ||
background: #2e3440; | ||
color: #2e3440; | ||
} | ||
|
||
#profile-picture { | ||
border: 3px solid #2e3440; | ||
box-shadow: 2px 2px #2e3440; | ||
border-radius: 10px; | ||
} | ||
|
||
main { | ||
background: #eceff4; | ||
box-shadow: 4px 4px #4c566a; | ||
border-radius: 10px; | ||
} | ||
|
||
h1 { | ||
color: #3b4252; | ||
} | ||
|
||
p{ | ||
color: #3b4252; | ||
} | ||
|
||
|
||
a:link, | ||
a:visited { | ||
text-decoration: none; | ||
color: #4c566a; | ||
transition: background 0.2s linear; | ||
} | ||
|
||
a:hover { | ||
background: #d8dee9; | ||
} | ||
|
||
a:active { | ||
color: #3b4252; | ||
} | ||
|
||
.omg-icon svg { | ||
fill: #4c566a; | ||
} | ||
|
||
i { | ||
color: #5e81ac; | ||
} | ||
|
||
#footer { | ||
margin-top: 10px; | ||
} |