forked from Izzzio/BlockExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplorer.css
More file actions
122 lines (103 loc) · 1.97 KB
/
explorer.css
File metadata and controls
122 lines (103 loc) · 1.97 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* Base structure
*/
/* Move down content because we have a fixed navbar that is 3.5rem tall */
body {
padding-top: 3.5rem;
}
/*
* Typography
*/
h1 {
padding-bottom: 9px;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
}
/*
* Sidebar
*/
.sidebar {
position: fixed;
top: 51px;
bottom: 0;
left: 0;
z-index: 1000;
padding: 20px 0;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
border-right: 1px solid #eee;
}
.sidebar .nav {
margin-bottom: 20px;
}
.sidebar .nav-item {
width: 100%;
}
.sidebar .nav-item + .nav-item {
margin-left: 0;
}
.sidebar .nav-link {
border-radius: 0;
}
/*
* Dashboard
*/
/* Placeholders */
.placeholders {
padding-bottom: 3rem;
}
.placeholder img {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.loader {
border: 0.7vw solid #f3f3f3;
border-top: 0.7vw solid #353535;
border-radius: 50%;
width: 5vw;
height: 5vw;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.bg-dark {
background-color: #1d0e54!important;
}
.btn {
display: inline-block;
-webkit-border-radius: 22px;
border-radius: 22px;
height: 45px;
line-height: 45px;
font-size: 18px;
font-weight: 600;
text-align: center;
padding: 0 25px;
cursor: pointer;
}
.btn-dark-green {
color: #4f39a4;
background-color: #6dd8ba;
-webkit-transition: background-color 0.3s;
-o-transition: background-color 0.3s;
transition: background-color 0.3s;
}
.btn-dark-green:hover {
background-color: #80f1d1;
}
.btn-dark-green:active {
background-color: #57bda1;
}
.transactionsTable{
text-align: center;
line-height: 40px;
border-collapse: collapse;
}
.transactionsTable tr:nth-child(even){background-color: #f2f2f2;}
.transactionsTable tr:hover {background-color: #e4e4e4;}