openethereum/js/packages/dapp-tokenreg/Tokens/Token/token.css
Jaco Greeff 49fdd23d58 Ui 2 move to packages/* (#6113)
* Move secureApi to shell

* Extract isTestnet test

* Use mobx + subscriptions for status

* Re-add status indicator

* Add lerna

* Move intial packages to js/packages

* Move 3rdparty/{email,sms}-verification to correct location

* Move package.json & README to library src

* Move tests for library packages

* Move views & dapps to packages

* Move i18n to root

* Move shell to actual src (main app)

* Remove ~ references

* Change ~ to root (explicit imports)

* Finalise convert of ~

* Move views into dapps as well

* Move dapps to packages/

* Fix references

* Update css

* Update test spec locations

* Update tests

* Case fix

* Skip flakey tests

* Update enzyme

* Skip previously ignored tests

* Allow empty api for hw

* Re-add theme for embed
2017-07-21 15:46:53 +02:00

141 lines
2.3 KiB
CSS

/* Copyright 2015-2017 Parity Technologies (UK) Ltd.
/* This file is part of Parity.
/*
/* Parity is free software: you can redistribute it and/or modify
/* it under the terms of the GNU General Public License as published by
/* the Free Software Foundation, either version 3 of the License, or
/* (at your option) any later version.
/*
/* Parity is distributed in the hope that it will be useful,
/* but WITHOUT ANY WARRANTY; without even the implied warranty of
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/* GNU General Public License for more details.
/*
/* You should have received a copy of the GNU General Public License
/* along with Parity. If not, see <http://www.gnu.org/licenses/>.
*/
.token{
position: relative;
display: flex;
width: 20rem;
margin: 1rem;
padding: 1rem;
padding-bottom: 1.5rem;
}
.token-container, .token-content, .token-meta {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.token-content, .token-meta {
z-index: 50;
}
.token-bg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
-webkit-filter: blur(5px);
filter: blur(5px);
background-color: rgba(255, 255, 255, 0.85);
}
.token-container {
flex: 1 1 auto;
}
.full-width .token-container {
flex-direction: row;
align-items: flex-start;
}
.full-width .token-content {
width: 20rem;
margin-right: 1rem;
}
.token-content > div, .token-meta > div {
max-width: 100%;
}
.loading {
margin: 1rem 0;
}
.name {
padding-bottom: 0.75rem;
}
.title {
font-size: 2rem;
padding: 0 0 0.5rem;
}
.meta-query {
font-size: 0.9rem;
margin-top: 1.5rem;
margin-bottom: 0;
}
.meta-key {
font-weight: bold;
}
.meta-value {
margin-top: 0.5rem;
max-width: 100%;
overflow-wrap: break-word;
}
.meta-info {
margin-top: 1.5rem;
margin-bottom: -0.5rem;
font-size: 0.9rem;
color: gray;
}
.meta-image {
width: 100%;
margin-top: 1rem;
}
.meta-image img {
width: 100%;
}
.meta-form {
width: 100%;
}
.unregister {
margin-top: 1rem;
}
.add-meta {
margin-top: 1rem;
width: 100%;
}
.pending {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 100;
background-color: rgba(0, 0, 0, 0.35);
}
.dialog h3 {
color: rgba(50, 100, 150, 1) !important;
text-transform: uppercase;
}