Initial commit
This commit is contained in:
20
server/views/css/site-layout.css
Normal file
20
server/views/css/site-layout.css
Normal file
@@ -0,0 +1,20 @@
|
||||
body {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
|
||||
header, main, footer {
|
||||
padding-left: 300px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width : 992px) {
|
||||
header, main, footer {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
47
server/views/css/site.css
Normal file
47
server/views/css/site.css
Normal file
@@ -0,0 +1,47 @@
|
||||
/* Color scheme from https://material.io/resources/color/#!/?view.left=0&view.right=0&primary.color=212121&secondary.color=263238 */
|
||||
.primary-color {
|
||||
background-color: #212121 !important;
|
||||
}
|
||||
|
||||
.primary-color-light {
|
||||
background-color: #484848 !important;
|
||||
}
|
||||
|
||||
.primary-color-dark {
|
||||
background-color: #000000 !important;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
Reference in New Issue
Block a user