-
Notifications
You must be signed in to change notification settings - Fork 0
/
Base-Style.css
89 lines (88 loc) · 1.91 KB
/
Base-Style.css
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
body{
background-color: rgb(242, 242, 242);
color: rgb(126,126,126);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: large;
}
#horizontalBar{
display: inline-block;
list-style-type: none;
text-align: left;
width: 100%;
height:fit-content;
position: relative;
top: -30px;
left: -10px;
background-color: rgb(109, 109, 109);
}
.horizontalItem{
display: inline-block;
color: white;
padding: 15px;
}
#connectedNetwork{
text-align: center;
color: rgb(126, 126, 126);
font-size: medium;
}
#walletAccount{
text-align: center;
color: rgb(126, 126, 126);
font-size: medium;
}
#verticalBar {
list-style-type: none;
text-align: center;
text-transform: capitalize;
width: 250px;
height: auto;
position: relative;
top: -66px;
left: -50px;
background-color: rgb(197, 197, 197);
}
li a{
display: block;
color: black;
padding: 15px 18px;
text-decoration: none;
font-size: medium;
cursor:context-menu;
}
li a:hover{
background-color: rgb(109, 109, 109);
color: white;
}
li.viewNetworkItem a.viewNetworkItem{
display: none;
color: black;
background-color: rgb(223, 223, 223);
padding: 12px 15px;
text-decoration: none;
font-size: small;
cursor:context-menu;
}
li.viewNetworkItem a.viewNetworkItem:hover{
background-color: rgb(141, 141, 141);
color: white;
}
table{
position: relative;
top: -500px;
left: 350px;
border-spacing: 0px;
border-left: 3px solid rgb(109, 109, 109);
border-right: 3px solid rgb(109, 109, 109);
}
th{
background-color: rgb(109, 109, 109);
color: white;
padding: 15px;
}
td{
text-align: center;
background-color: rgb(197, 197, 197);
color: black;
padding: 15px;
border-bottom: 3px solid rgb(109, 109, 109);
}