v1.1.7
This commit is contained in:
parent
001a4f609e
commit
4ea944ea39
72
css/main.css
72
css/main.css
@ -131,6 +131,10 @@ h3 {
|
||||
text-transform: uppercase !important;
|
||||
}
|
||||
|
||||
.capitalise {
|
||||
text-transform: capitalize !important;
|
||||
}
|
||||
|
||||
.toggle {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
@ -251,6 +255,15 @@ ul .balance:last-of-type {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.transaction-container {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
margin-top: 1.5rem;
|
||||
gap: 1.5rem;
|
||||
-ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
|
||||
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
|
||||
}
|
||||
|
||||
.label {
|
||||
text-transform: capitalize;
|
||||
font-size: 0.8rem;
|
||||
@ -784,8 +797,12 @@ p {
|
||||
}
|
||||
|
||||
.tabs {
|
||||
position: relative;
|
||||
margin-top: 2rem;
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
padding: 1rem 0 1rem 0;
|
||||
background: rgba(var(--foreground), 1);
|
||||
z-index: 2;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
@ -795,10 +812,10 @@ p {
|
||||
.tabs .tab {
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
padding-bottom: 0.5rem;
|
||||
margin-right: 1rem;
|
||||
margin-right: 1.5rem;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
white-space: nowrap;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.tabs .tab:last-of-type {
|
||||
@ -811,7 +828,7 @@ p {
|
||||
|
||||
.tabs .line {
|
||||
position: absolute;
|
||||
height: 0.1em;
|
||||
height: 0.16rem;
|
||||
background: rgba(var(--text), 1);
|
||||
width: 1px;
|
||||
bottom: 0;
|
||||
@ -822,6 +839,9 @@ p {
|
||||
}
|
||||
|
||||
.contract-choice {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
gap: 0.5rem 1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
@ -829,12 +849,6 @@ p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.contract-choice h3 {
|
||||
text-transform: capitalize;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
#homepage {
|
||||
margin: 0 1.5rem;
|
||||
}
|
||||
@ -865,12 +879,6 @@ p {
|
||||
}
|
||||
}
|
||||
|
||||
#top_transaction_container {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
gap: 1.5em;
|
||||
}
|
||||
|
||||
.transaction {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
@ -880,6 +888,8 @@ p {
|
||||
-ms-grid-columns: min-content 1fr;
|
||||
grid-template-columns: -webkit-min-content 1fr;
|
||||
grid-template-columns: min-content 1fr;
|
||||
-ms-grid-rows: auto 1fr;
|
||||
grid-template-rows: auto 1fr;
|
||||
background: rgba(var(--text), 0.06);
|
||||
grid-template-areas: '. .' 'info info';
|
||||
}
|
||||
@ -889,6 +899,9 @@ p {
|
||||
-ms-grid-column: 1;
|
||||
-ms-grid-column-span: 2;
|
||||
grid-area: info;
|
||||
-webkit-box-align: start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.transaction h4 {
|
||||
@ -903,7 +916,7 @@ p {
|
||||
width: 3rem;
|
||||
padding: 0.8rem;
|
||||
border-radius: 1rem;
|
||||
background: var(--background);
|
||||
background: rgba(var(--foreground), 1);
|
||||
}
|
||||
|
||||
#loader_page {
|
||||
@ -1008,10 +1021,6 @@ p {
|
||||
#page_header {
|
||||
padding: 1.5rem 0;
|
||||
}
|
||||
#top_transaction_container {
|
||||
-ms-grid-columns: (1fr)[2];
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
#transaction_page {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
@ -1026,6 +1035,13 @@ p {
|
||||
-ms-grid-column-span: 2;
|
||||
grid-area: header;
|
||||
}
|
||||
.contract-choice {
|
||||
-ms-grid-columns: 2fr 1fr 1fr;
|
||||
grid-template-columns: 2fr 1fr 1fr;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1280px) {
|
||||
@ -1063,10 +1079,6 @@ p {
|
||||
-ms-grid-column: 4;
|
||||
grid-area: contract;
|
||||
}
|
||||
#top_transaction_container {
|
||||
-ms-grid-columns: (1fr)[3];
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1920px) {
|
||||
@ -1082,10 +1094,6 @@ p {
|
||||
.input {
|
||||
width: 40% !important;
|
||||
}
|
||||
#top_transaction_container {
|
||||
-ms-grid-columns: (1fr)[4];
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 2048px) {
|
||||
@ -1104,10 +1112,6 @@ p {
|
||||
.input {
|
||||
width: 30% !important;
|
||||
}
|
||||
#top_transaction_container {
|
||||
-ms-grid-columns: (1fr)[5];
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -92,6 +92,9 @@ h3{
|
||||
.uppercase{
|
||||
text-transform: uppercase !important;
|
||||
}
|
||||
.capitalise{
|
||||
text-transform: capitalize !important;
|
||||
}
|
||||
.toggle{
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
@ -171,7 +174,6 @@ ul{
|
||||
.card{
|
||||
padding: 2rem 1.5rem;
|
||||
border-radius: 0.5rem;
|
||||
//border: solid 1px rgba(var(--text), 0.16);
|
||||
background: rgba(var(--text), 0.06);
|
||||
margin: 1.5rem 0;
|
||||
h4{
|
||||
@ -183,6 +185,12 @@ ul{
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
}
|
||||
.transaction-container{
|
||||
display: grid;
|
||||
margin-top: 1.5rem;
|
||||
gap: 1.5rem;
|
||||
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
|
||||
}
|
||||
.label{
|
||||
text-transform: capitalize;
|
||||
font-size: 0.8rem;
|
||||
@ -375,9 +383,6 @@ ul{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 1.5rem;
|
||||
//border-radius: 0.5rem;
|
||||
//background: rgba(var(--text), 0.1);
|
||||
//border: 1px solid rgba(var(--text), 0.2);
|
||||
border-left: 0.1rem solid rgba(var(--text), 0.2);
|
||||
.label{
|
||||
margin-top: auto;
|
||||
@ -529,17 +534,20 @@ p{
|
||||
word-break: break-all;
|
||||
}
|
||||
.tabs{
|
||||
position: relative;
|
||||
margin-top: 2rem;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
padding: 1rem 0 1rem 0;
|
||||
background: rgba(var(--foreground), 1);
|
||||
z-index: 2;
|
||||
display: flex;
|
||||
overflow-x: auto;
|
||||
.tab{
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
padding-bottom: 0.5rem;
|
||||
margin-right: 1rem;
|
||||
margin-right: 1.5rem;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
white-space: nowrap;
|
||||
font-size: 1.2rem;
|
||||
&:last-of-type{
|
||||
margin-right: 0;
|
||||
}
|
||||
@ -549,7 +557,7 @@ p{
|
||||
}
|
||||
.line{
|
||||
position: absolute;
|
||||
height: 0.1em;
|
||||
height: 0.16rem;
|
||||
background: rgba(var(--text), 1);
|
||||
width: 1px;
|
||||
bottom: 0;
|
||||
@ -557,15 +565,12 @@ p{
|
||||
}
|
||||
}
|
||||
.contract-choice{
|
||||
display: grid;
|
||||
gap: 0.5rem 1rem;
|
||||
margin-bottom: 2rem;
|
||||
&:last-of-type{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
h3{
|
||||
text-transform: capitalize;
|
||||
font-weight: 400;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
}
|
||||
#homepage{
|
||||
margin: 0 1.5rem;
|
||||
@ -580,21 +585,19 @@ p{
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
#top_transaction_container{
|
||||
display: grid;
|
||||
gap: 1.5em;
|
||||
}
|
||||
.transaction{
|
||||
display: grid;
|
||||
gap: 2rem 1rem;
|
||||
padding: 2rem;
|
||||
border-radius: 0.5rem;
|
||||
grid-template-columns: min-content 1fr;
|
||||
grid-template-rows: auto 1fr;
|
||||
background: rgba(var(--text), 0.06);
|
||||
grid-template-areas: '. .'
|
||||
'info info';
|
||||
.contract-info{
|
||||
grid-area: info;
|
||||
align-items: flex-start;
|
||||
}
|
||||
h4{
|
||||
font-weight: 500;
|
||||
@ -606,7 +609,7 @@ p{
|
||||
width: 3rem;
|
||||
padding: 0.8rem;
|
||||
border-radius: 1rem;
|
||||
background: var(--background);
|
||||
background: rgba(var(--foreground), 1);
|
||||
}
|
||||
}
|
||||
#loader_page{
|
||||
@ -691,9 +694,6 @@ p{
|
||||
#page_header{
|
||||
padding: 1.5rem 0;
|
||||
}
|
||||
#top_transaction_container{
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
#transaction_page{
|
||||
display: grid;
|
||||
gap: 0 1.5rem;
|
||||
@ -704,6 +704,10 @@ p{
|
||||
grid-area: header;
|
||||
}
|
||||
}
|
||||
.contract-choice{
|
||||
grid-template-columns: 2fr 1fr 1fr;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1280px){
|
||||
.margin, .page{
|
||||
@ -733,9 +737,7 @@ p{
|
||||
}
|
||||
}
|
||||
}
|
||||
#top_transaction_container{
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
}
|
||||
@media only screen and (min-width: 1920px){
|
||||
body{
|
||||
@ -750,9 +752,6 @@ p{
|
||||
.input{
|
||||
width: 40% !important;
|
||||
}
|
||||
#top_transaction_container{
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 2048px){
|
||||
body{
|
||||
@ -770,9 +769,6 @@ p{
|
||||
.input{
|
||||
width: 30% !important;
|
||||
}
|
||||
#top_transaction_container{
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 320px){
|
||||
body{
|
||||
|
||||
2248
index.html
2248
index.html
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user