Skip to content
Open
Show file tree
Hide file tree
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
30 changes: 30 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ font-weight: 300;
text-align: center;
}

.dark h1, .dark h2, .dark a, .dark .currency, .dark .price {
color: #FFF;
}

.volume{
color: #C0C9CF;
font-size: 11px;
Expand Down Expand Up @@ -127,11 +131,21 @@ border: 1px solid #F3F4F4;
border-radius: 4px;
}

.dark .box {
background: #101626;
border: 0;
}

.box:hover{
background: #f3f4f4;
border: 1px solid rgb(238, 238, 238);
}

.dark .box:hover {
background: #161d31;
border: 0;
}

.tick{
font-size: 8px;
float: right;
Expand Down Expand Up @@ -218,13 +232,20 @@ margin: 10px 15px 0px 15px;
text-align: center;
padding:11px 30px 11px 30px;
border-top: 1px solid #F3F4F4;
}

.dark .currencies-item {
border-top-color: #101626;
}

.currencies-item:hover{
background: white;
}

.dark .currencies-item:hover {
background-color: #101626;
}

.add-pair{
text-align: center;
color:#C6CED4
Expand Down Expand Up @@ -252,6 +273,11 @@ height: 350px;
margin: 0!important;
}

.dark .inside {
background: #101113;
border-color: #101113;
}

.up{
font-size: 12px;
color: #7ED321;
Expand Down Expand Up @@ -309,6 +335,10 @@ height: 430px;
margin: 0 auto;
}

.dark .page {
background: #101626;
}


.darwin.page {
border-radius: 5px;
Expand Down
Loading