mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* view algorithms on homepage * linting error fixed * view algos on rinkeby/mainnet, added algos on search * global color system tweak, apply on asset teaser system * create subtle hierarchical distinction between background & content * output asset type * add asset type as css class * bonus side effect: a nicer dark mode theme on OLED screens * add icon assets * compute/download icons added to asset teaser * tooltip content fix * tooltip content width fix tooltip message shortened * max-width added * links renamed, all algos section removed * datatoken tooltip removed * spacing tweaks * visual separation of asset & access type, flip order * spacing/font size tweaks, aligning things * fix search Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * light mode color tweak * change dataset display name Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * data set label fixed * query updated for data sets and algos Co-authored-by: claudia.holhos <claudia.holhos@hpm.ro> Co-authored-by: Matthias Kretschmann <m@kretschmann.io> Co-authored-by: mihaisc <mihai.scarlat@smartcontrol.ro>
23 lines
468 B
CSS
23 lines
468 B
CSS
.box {
|
|
display: block;
|
|
background: var(--background-content);
|
|
border-radius: var(--border-radius);
|
|
border: 1px solid var(--border-color);
|
|
box-shadow: 0 6px 17px 0 var(--box-shadow-color);
|
|
overflow: hidden;
|
|
padding: calc(var(--spacer) / 1.5);
|
|
}
|
|
|
|
@media (min-width: 40rem) {
|
|
.box {
|
|
padding: var(--spacer);
|
|
}
|
|
}
|
|
|
|
a.box:hover,
|
|
a.box:focus {
|
|
outline: 0;
|
|
transform: translate3d(0, -0.1rem, 0);
|
|
box-shadow: 0 10px 25px 0 var(--box-shadow-color);
|
|
}
|