45 lines
667 B
CSS
45 lines
667 B
CSS
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: #444444
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #44a37d;
|
|
}
|
|
|
|
.coin-list a {
|
|
color: #444444;
|
|
}
|
|
|
|
header a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.green {
|
|
color: #4eaf0a;
|
|
}
|
|
|
|
.red {
|
|
color: #e15241
|
|
}
|
|
|
|
.coinName {
|
|
font-weight: bold;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.coinSymbol {
|
|
font-weight: normal;
|
|
font-size: 0.8em;
|
|
margin-left: 5px;
|
|
color: #777777;
|
|
text-transform: uppercase;
|
|
}
|