wallet-core/src/webex/style/wallet.css

254 lines
3.4 KiB
CSS
Raw Normal View History

body {
font-size: 100%;
overflow-y: scroll;
}
2016-10-03 16:30:35 +02:00
#main {
border: solid 1px black;
border-radius: 10px;
2017-03-28 09:47:22 +02:00
margin-left: auto;
margin-right: auto;
margin-top: 2em;
2016-10-03 16:30:35 +02:00
max-width: 50%;
padding: 2em;
2015-12-18 22:36:26 +01:00
}
header {
width: 100%;
height: 100px;
margin: 0;
padding: 0;
border-bottom: 1px solid black;
}
header h1 {
font-size: 200%;
margin: 0;
padding: 0 0 0 120px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
header #logo {
float: left;
width: 100px;
height: 100px;
padding: 0;
margin: 0;
text-align: center;
border-right: 1px solid black;
2016-11-13 23:30:18 +01:00
background-image: url(/img/logo.png);
2015-12-18 22:36:26 +01:00
background-size: 100px;
}
aside {
width: 100px;
float: left;
}
section#main {
2016-10-04 11:48:50 +02:00
margin: auto;
2015-12-18 22:36:26 +01:00
padding: 20px;
border-left: 1px solid black;
height: 100%;
2016-10-04 11:48:50 +02:00
max-width: 50%;
2015-12-18 22:36:26 +01:00
}
section#main h1:first-child {
margin-top: 0;
}
h1 {
font-size: 160%;
}
h2 {
font-size: 140%;
}
h3 {
font-size: 120%;
}
h4, h5, h6 {
font-size: 100%;
}
2015-12-07 23:39:25 +01:00
.form-row {
padding-top: 5px;
padding-bottom: 5px;
}
label {
padding-right: 1em;
}
input.url {
width: 25em;
}
.formish {
}
2015-12-08 11:50:51 +01:00
.json-key {
color: brown;
}
.json-value {
color: navy;
}
.json-string {
color: olive;
}
2015-12-18 22:36:26 +01:00
button {
font-size: 120%;
padding: 0.5em;
}
2016-02-15 11:29:58 +01:00
2016-02-15 15:53:59 +01:00
button.confirm-pay {
float: right;
}
2016-02-15 11:29:58 +01:00
/* We use fading to hide slower DOM updates */
.fade {
-webkit-animation: fade 0.7s;
animation: fade 0.7s;
opacity: 1;
}
@-webkit-keyframes fade {
from {opacity: 0}
to {opacity: 1}
}
@keyframes fade {
from {opacity: 0}
to {opacity: 1}
2016-02-18 22:50:17 +01:00
}
button.linky {
background:none!important;
border:none;
padding:0!important;
font-family:arial,sans-serif;
color:#069;
text-decoration:underline;
cursor:pointer;
}
table, th, td {
border: 1px solid black;
}
2017-03-28 09:47:22 +02:00
button.accept {
background-color: #5757D2;
border: 1px solid black;
border-radius: 5px;
margin: 1em 0;
padding: 0.5em;
font-weight: bold;
color: white;
}
button.linky {
background:none!important;
border:none;
padding:0!important;
font-family:arial,sans-serif;
color:#069;
text-decoration:underline;
cursor:pointer;
}
button.accept:disabled {
background-color: #dedbe8;
border: 1px solid white;
border-radius: 5px;
margin: 1em 0;
padding: 0.5em;
font-weight: bold;
color: #2C2C2C;
}
input.url {
width: 25em;
}
table {
border-collapse: collapse;
}
td {
border-left: 1px solid black;
border-right: 1px solid black;
text-align: center;
padding: 0.3em;
}
span.spacer {
padding-left: 0.5em;
padding-right: 0.5em;
}
.button-success,
.button-destructive,
.button-warning,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-success {
background: rgb(28, 184, 65);
}
.button-destructive {
background: rgb(202, 60, 60);
}
.button-warning {
background: rgb(223, 117, 20);
}
.button-secondary {
background: rgb(66, 184, 221);
}
a.actionLink {
color: black;
}
.errorbox {
border: 1px solid;
display: inline-block;
margin: 1em;
padding: 1em;
font-weight: bold;
background: #FF8A8A;
}
.okaybox {
border: 1px solid;
display: inline-block;
margin: 1em;
padding: 1em;
font-weight: bold;
background: #00FA9A;
}
a.opener {
color: black;
}
.opener-open::before {
content: "\25bc"
}
.opener-collapsed::before {
content: "\25b6 "
}