| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program 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 Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- @import '../variables.scss';
- .root {
- :global(.arrow) {
- width: 64px;
- height: 32px;
- margin-top: 52px;
- margin-left: 70px;
- position: absolute;
- }
- }
- .container {
- margin: 0 auto;
- &:after {
- clear: both;
- height: 0;
- display: block;
- content: ' ';
- }
- }
- .columnLeft, .columnRight {
- width: 50%;
- float: left;
- }
- .formGroup {
- margin-bottom: 32px;
- .title {
- font-weight: $weight-semibold;
- font-size: 10px;
- color: $gray-dark;
- letter-spacing: -0.34px;
- text-transform: uppercase;
- margin-bottom: 8px;
- }
- .titleIp {
- font-weight: $weight-semibold;
- font-size: 14px;
- color: $gray;
- letter-spacing: -0.41px;
- }
- .value {
- font-weight: $weight-regular;
- font-size: 14px;
- color: $black;
- letter-spacing: -0.41px;
- a {
- color: $blue;
- }
- }
- }
- .cloudImg {
- width: 96px;
- margin-top: 16px;
- }
|