|
|
@@ -49,42 +49,6 @@ Multi-strand use classes
|
|
|
padding: 0;
|
|
|
}
|
|
|
|
|
|
-.itemDisplay{
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
- padding: 20px;
|
|
|
- width: 100%;
|
|
|
- background: rgb(240, 252, 255);
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid gray;
|
|
|
- cursor: pointer;
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
- .itemDisplay:hover{
|
|
|
- background: rgb(0, 27, 45);
|
|
|
- color: white;
|
|
|
- }
|
|
|
-
|
|
|
- .itemDisplay > *:first-of-type{
|
|
|
- font-size: 20px;
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
-
|
|
|
-.smallItemDisplay{
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
- padding: 10px;
|
|
|
- margin: 5px 0;
|
|
|
- width: 100%;
|
|
|
- background: rgb(240, 252, 255);
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid gray;
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
.searchBar{
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
@@ -518,8 +482,6 @@ Analytics Strand
|
|
|
transition: 0.2s;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
.analContent{
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
@@ -536,27 +498,6 @@ Analytics Strand
|
|
|
overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
- .itemButton{
|
|
|
- background: rgb(0, 27, 45);
|
|
|
- color: white;
|
|
|
- border-radius: 5px;
|
|
|
- padding: 5px;
|
|
|
- margin: 2px;
|
|
|
- width: 90%;
|
|
|
- text-align: center;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
-
|
|
|
- .itemButton:hover{
|
|
|
- background: rgb(201, 201, 201);
|
|
|
- color: black;
|
|
|
- }
|
|
|
-
|
|
|
- .analItemActive{
|
|
|
- background: rgb(179, 191, 209);
|
|
|
- cursor: default;
|
|
|
- }
|
|
|
-
|
|
|
.analData{
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
@@ -647,64 +588,51 @@ Transactions Strand
|
|
|
margin-top: 50px;
|
|
|
}
|
|
|
|
|
|
- #transactionFilter{
|
|
|
- padding: 5px;
|
|
|
- margin: 0;
|
|
|
+ .dropdown{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
align-items: center;
|
|
|
- max-height: 150px;
|
|
|
+ position: relative;
|
|
|
+ margin: 0;
|
|
|
}
|
|
|
|
|
|
- #transactionFilter > div{
|
|
|
+ .dropdown button{
|
|
|
display: flex;
|
|
|
- justify-content: space-around;
|
|
|
- width: 100%;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ height: 25px;
|
|
|
+ width: 25px;
|
|
|
+ border-radius: 5px;
|
|
|
+ border: 1px solid black;
|
|
|
+ background: none;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
- .dropdown{
|
|
|
+ .dropdownHead{
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- position: relative;
|
|
|
- margin: 0;
|
|
|
}
|
|
|
|
|
|
- .dropdown button{
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- height: 25px;
|
|
|
- width: 25px;
|
|
|
- border-radius: 5px;
|
|
|
- border: 1px solid black;
|
|
|
- background: none;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
+ .dropdown button:hover{
|
|
|
+ background: rgb(0, 27, 45);
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
|
|
|
- .dropdownHead{
|
|
|
- display: flex;
|
|
|
- }
|
|
|
-
|
|
|
- .dropdown button:hover{
|
|
|
- background: rgb(0, 27, 45);
|
|
|
- color: white;
|
|
|
- }
|
|
|
-
|
|
|
- .dropdownContents{
|
|
|
- text-align: left;
|
|
|
- position: absolute;
|
|
|
- top: 25px;
|
|
|
- background: rgb(240, 252, 255);
|
|
|
- z-index: 1;
|
|
|
- padding: 2px;
|
|
|
- border: 1px solid black;
|
|
|
- border-radius: 5px;
|
|
|
- padding: 5px;
|
|
|
- white-space: nowrap;
|
|
|
- }
|
|
|
+ .dropdownContents{
|
|
|
+ text-align: left;
|
|
|
+ position: absolute;
|
|
|
+ top: 25px;
|
|
|
+ background: rgb(240, 252, 255);
|
|
|
+ z-index: 1;
|
|
|
+ padding: 2px;
|
|
|
+ border: 1px solid black;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 5px;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
|
|
|
- .dropDownContents label{
|
|
|
- margin: 0;
|
|
|
- }
|
|
|
+ .dropDownContents label{
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
|
|
|
@media screen and (max-width: 1000px){
|
|
|
body{
|
|
|
@@ -733,10 +661,6 @@ Transactions Strand
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
|
- .smallItemDisplay{
|
|
|
- color: black;
|
|
|
- }
|
|
|
-
|
|
|
.filterForm{
|
|
|
display: none;
|
|
|
}
|