zecwallet-lite/app/app.global.css

145 lines
2.3 KiB
CSS

/*
* @NOTE: Prepend a `~` to css file paths that are in your node_modules
* See https://github.com/webpack-contrib/sass-loader#imports
*/
@import '~@fortawesome/fontawesome-free/css/all.css';
@import '~typeface-roboto/index.css';
html {
overflow: hidden;
}
body {
position: relative;
color: white;
height: 100vh;
background-color: #212124;
font-family: Roboto, Arial, Helvetica, Helvetica Neue, serif;
}
::-webkit-scrollbar {
width: 0.5em;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px grey;
background-color: rgb(1, 1, 1);
}
::-webkit-scrollbar-thumb {
background-color: white;
outline: 1px solid slategrey;
}
h2 {
margin: 0;
font-size: 2.25rem;
font-weight: bold;
letter-spacing: -0.025em;
color: #fff;
}
p {
font-size: 12px;
}
li {
list-style: none;
}
a {
color: white;
text-decoration: none;
}
input[disabled] {
color: grey;
}
.react-tabs {
-webkit-tap-highlight-color: transparent;
}
.react-tabs__tab-list {
border-bottom: 1px solid #aaa;
margin: 0 0 10px;
padding: 0;
}
.react-tabs__tab {
display: inline-block;
border: 1px solid transparent;
border-bottom: none;
bottom: -1px;
position: relative;
list-style: none;
padding: 6px 12px;
cursor: pointer;
font-size: 16px;
}
.react-tabs__tab--selected {
background: #c3921f;
color: black;
border-radius: 5px 5px 0 0;
}
.react-tabs__tab--disabled {
color: grey;
cursor: default;
}
.react-tabs__tab:focus {
box-shadow: 0 0 5px hsl(208, 99%, 50%);
border-color: hsl(208, 99%, 50%);
outline: none;
}
.react-tabs__tab:focus::after {
content: '';
position: absolute;
height: 5px;
left: -4px;
right: -4px;
bottom: -5px;
background: #fff;
}
.react-tabs__tab-panel {
display: none;
}
.react-tabs__tab-panel--selected {
display: block;
}
img,
img::after,
img::before {
-webkit-user-select: none;
-webkit-user-drag: none;
-webkit-app-region: no-drag;
cursor: default;
}
a,
a::after,
a::before {
-webkit-user-select: none;
-webkit-user-drag: none;
-webkit-app-region: no-drag;
cursor: default;
}
a:hover {
opacity: 0.8;
text-decoration: none;
cursor: pointer;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}