-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (74 loc) · 1.23 KB
/
style.css
File metadata and controls
90 lines (74 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
::-webkit-scrollbar {
width: 0;
height: 0;
}
html,
body {
scroll-behavior: smooth;
background-color: rgb(44, 44, 44);
display: flex;
flex-direction: column;
min-height: 100vh;
color: white;
.container {
max-width: 800px;
margin: 0 auto;
flex: 1;
}
h1 {
color: #343a40;
}
.input-group {
margin-bottom: 20px;
}
.table {
width: 100%;
border-collapse: collapse;
}
.table th,
.table td {
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 8px;
text-align: center;
border-bottom: 1px solid #ddd;
}
.table th {
background-color: #343a40;
color: #ffffff;
}
.table th:not(:first-child),
.table td:not(:first-child) {
font-weight: normal;
}
.table tbody tr {
background-color: transparent;
cursor: pointer;
color: white
}
.crypto-logo {
width: 30px;
height: 30px;
}
}
footer {
background-color: #343a40;
color: #ffffff;
text-align: center;
margin-top: auto;
header h1 {
color: #ffffff;
}
@media only screen and (max-width: 600px) {
.table th,
.table td {
font-size: 12px;
padding: 5px;
}
header h1 {
font-size: 24px;
}
}
}