Files
mantra.press/server/views/css/site.css

84 lines
1.4 KiB
CSS
Raw Normal View History

2021-12-19 18:17:51 +02:00
html {
font-family: courier;
}
2021-12-18 17:47:05 +02:00
/* Color scheme from https://material.io/resources/color/#!/?view.left=0&view.right=1&primary.color=212121&secondary.color=263238 */
2021-12-18 02:34:52 +02:00
.primary-color {
2021-12-19 18:17:51 +02:00
background-color: #f9fbff !important;
2021-12-18 02:34:52 +02:00
}
.primary-color-light {
2021-12-19 18:17:51 +02:00
background-color: #ffffff !important;
2021-12-18 02:34:52 +02:00
}
.primary-color-dark {
2021-12-19 18:17:51 +02:00
background-color: #c6c8cc !important;
2021-12-18 02:34:52 +02:00
}
.secondary-color {
background-color: #263238 !important;
}
.secondary-color-light {
background-color: #4f5b62 !important;
}
.secondary-color-dark {
background-color: #000a12 !important;
}
.money-chip {
display: inline-block;
/* height: 33px;
font-size: 1;
font-weight: 500; */
line-height: 32px;
padding: 12px;
border-radius: 16px;
}
.auto-image {
width: auto !important;
}
/* This gives use dots in our markdown lists... */
.flow-text ul li {
list-style-type: disc !important;
}
.bitcoin-address {
word-wrap: break-word;
2022-02-18 01:28:23 +02:00
}
.tracker-title-cell {
width: 1rem;
text-overflow: ellipsis;
overflow: hidden;
2022-06-19 22:12:45 +02:00
}
.tracker-dropdown {
margin-left: 0;
margin-top: -2px;
2022-06-22 02:25:56 +02:00
}
.initial-icon {
display:inline-block;
font-size:1em;
width:2.5em;
height:2.5em;
line-height:2.5em;
text-align:center;
border-radius:50%;
background:plum;
vertical-align:middle;
margin-right:1em;
color:white;
2022-06-22 03:39:36 +02:00
}
.chip .remove {
cursor: pointer;
float: right;
font-size: 16px;
line-height: 32px;
padding-left: 8px;
2021-12-18 02:34:52 +02:00
}