Merge branch 'frost' into new-user-filtering
|
@ -2,6 +2,14 @@
|
|||
|
||||
|
||||
:root {
|
||||
--primary: #1a6187;
|
||||
|
||||
--primary-dark1: #165476;
|
||||
--primary-dark2: #134662;
|
||||
|
||||
--primary-light1: #2280B3;
|
||||
--primary-light2: #2F9CD7;
|
||||
|
||||
--dark: #c7c7c7;
|
||||
--secondary: #c7c7c7;
|
||||
--gray: #c7c7c7;
|
||||
|
@ -25,6 +33,55 @@
|
|||
border-color: var(--primary);
|
||||
}
|
||||
|
||||
.btn-secondary:not(:disabled):not(.disabled):active,
|
||||
.btn-secondary:not(:disabled):not(.disabled).active,
|
||||
.show > .btn-secondary.dropdown-toggle {
|
||||
color: var(--primary-dark1);
|
||||
}
|
||||
.btn-secondary:focus, .btn-secondary.focus {
|
||||
color: var(--primary-dark1);
|
||||
}
|
||||
|
||||
a { color: var(--primary); }
|
||||
|
||||
.btn-primary { color: var(--primary); }
|
||||
.btn-primary:hover { color: var(--primary-light1); }
|
||||
|
||||
.btn-secondary { color: var(--primary); }
|
||||
.btn-secondary:hover { color: var(--primary-light1); }
|
||||
|
||||
.btn-success { color: var(--primary); }
|
||||
.btn-success:hover { color: var(--primary-light1); }
|
||||
|
||||
.btn-danger { color: var(--primary); }
|
||||
.btn-danger:hover { color: var(--primary-light1); }
|
||||
|
||||
.btn-primary.disabled, .btn-primary:disabled,
|
||||
.btn-secondary.disabled, .btn-secondary:disabled,
|
||||
.btn-success.disabled, .btn-success:disabled,
|
||||
.btn-danger.disabled, .btn-danger:disabled {
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.comment-write .comment-format .format {
|
||||
color: var(--primary);
|
||||
}
|
||||
.comment-write .comment-format .format:hover {
|
||||
color: var(--primary-light1);
|
||||
}
|
||||
.format .fa-bold:hover, .format .fa-italic:hover, .format .fa-quote-right:hover, .format .fa-link:hover, .format .fa-image:hover {
|
||||
color: var(--primary-light1);
|
||||
}
|
||||
|
||||
.custom-control-input:checked ~ .custom-control-label::before {
|
||||
opacity: 1;
|
||||
background-color: var(--primary-light2) !important;
|
||||
border: var(--primary) solid 0.1px;
|
||||
}
|
||||
.primary_banner {
|
||||
min-height: 20vh;
|
||||
object-fit: cover;
|
||||
}
|
||||
.border {
|
||||
border-color: var(--primary) !important;
|
||||
}
|
||||
|
@ -34,6 +91,10 @@
|
|||
border-color: var(--primary) !important;
|
||||
}
|
||||
|
||||
.form-control:focus {
|
||||
border-color: var(--primary-light1) !important;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background: transparent;
|
||||
border-color: var(--primary) !important;
|
||||
|
@ -43,7 +104,6 @@
|
|||
background: transparent;
|
||||
border-color: var(--primary) !important;
|
||||
}
|
||||
|
||||
.btn-success {
|
||||
border-color: #38A169 !important;
|
||||
}
|
||||
|
@ -71,17 +131,76 @@ pre {
|
|||
blockquote {
|
||||
color: var(--gray-400);
|
||||
}
|
||||
|
||||
#account-menu {
|
||||
left: -6px;
|
||||
}
|
||||
#main-navigation {
|
||||
max-width: 2000px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#profilestuff > * {
|
||||
color: var(--gray-400) !important;
|
||||
}
|
||||
|
||||
#profilestuff a {
|
||||
color: var(--primary-light2) !important;
|
||||
}
|
||||
#profilestuff h1 {
|
||||
color: var(--primary-light1) !important;
|
||||
}
|
||||
div.deleted {
|
||||
background-color: var(--gray-400) !important;
|
||||
}
|
||||
div.deleted.banned {
|
||||
background-color: var(--gray) !important;
|
||||
}
|
||||
.comment-body > .comment-anchor {
|
||||
padding: 10px;
|
||||
}
|
||||
.comment-anchor:target, .unread {
|
||||
background: #00000055 !important;
|
||||
}
|
||||
|
||||
#frontpage .post-title a:visited, .visited {
|
||||
color: #7a7a7a !important;
|
||||
#frontpage .posts .card, #userpage .posts .card, #search .posts .card {
|
||||
border: none;
|
||||
}
|
||||
#search .post-info,
|
||||
#userpage .post-info,
|
||||
#frontpage .post-info {
|
||||
display:flex;
|
||||
}
|
||||
#search .post-actions,
|
||||
#userpage .post-actions,
|
||||
#frontpage .post-actions {
|
||||
margin-left:auto;
|
||||
}
|
||||
#search .post-actions .list-inline,
|
||||
#userpage .post-actions .list-inline,
|
||||
#frontpage .post-actions .list-inline {
|
||||
align-items: center;
|
||||
height:100%;
|
||||
}
|
||||
#search .post-title a:hover,
|
||||
#userpage .post-title a:hover,
|
||||
#frontpage .post-title a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
a::not(.visited),
|
||||
#frontpage .post-title a:not(:visited),
|
||||
#userpage .post-title a:not(:visited),
|
||||
#search .post-title a:not(:visited) {
|
||||
color: var(--primary-light1);
|
||||
}
|
||||
a.visited,
|
||||
#frontpage .post-title a:visited,
|
||||
#userpage .post-title a:visited,
|
||||
#search .post-title a:visited {
|
||||
color: var(--primary-dark1);
|
||||
}
|
||||
.comment .comment-collapse-desktop {
|
||||
border-left: 2px solid var(--primary-dark1) !important;
|
||||
}
|
||||
.comment .comment-collapse-desktop:hover {
|
||||
border-left: 2px solid var(--primary-light2) !important;
|
||||
}
|
||||
|
||||
.usernote-link {
|
||||
|
|
|
@ -283,7 +283,7 @@ mark, .mark {
|
|||
}
|
||||
code {
|
||||
font-size: 87.5%;
|
||||
color: #e83e8c;
|
||||
color: var(--primary-dark1);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
|
@ -751,6 +751,9 @@ input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].bt
|
|||
.dropup, .dropdown {
|
||||
position: relative;
|
||||
}
|
||||
.d-nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.dropdown-toggle {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
@ -2151,9 +2154,18 @@ a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus
|
|||
}
|
||||
.shadow-sm {
|
||||
box-shadow: 0 0.1px 3px 0 rgba(0, 0, 0, 0.05), 0 0.1px 2px 0 rgba(0, 0, 0, 0.03) !important;
|
||||
-webkit-box-shadow: 0 0.1px 3px 0 rgba(0, 0, 0, 0.05), 0 0.1px 2px 0 rgba(0, 0, 0, 0.03) !important;
|
||||
-moz-box-shadow: 0 0.1px 3px 0 rgba(0, 0, 0, 0.05), 0 0.1px 2px 0 rgba(0, 0, 0, 0.03) !important;
|
||||
}
|
||||
.shadow-lg {
|
||||
box-shadow: -20px 20px 28px -20px rgba(0,0,0,0.51);
|
||||
-webkit-box-shadow: -20px 20px 28px -20px rgba(0,0,0,0.51);
|
||||
-moz-box-shadow: -20px 20px 28px -20px rgba(0,0,0,0.51);
|
||||
}
|
||||
.shadow {
|
||||
box-shadow: 0 0.1px 3px rgba(190, 113, 113, 0.05), 0 0 0 0.1px rgba(0, 0, 0, 0.05) !important;
|
||||
-webkit-box-shadow: 0 0.1px 3px rgba(190, 113, 113, 0.05), 0 0 0 0.1px rgba(0, 0, 0, 0.05) !important;
|
||||
-moz-box-shadow: 0 0.1px 3px rgba(190, 113, 113, 0.05), 0 0 0 0.1px rgba(0, 0, 0, 0.05) !important;
|
||||
}
|
||||
.shadow-none {
|
||||
box-shadow: none !important;
|
||||
|
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 616 KiB |
Before Width: | Height: | Size: 277 KiB After Width: | Height: | Size: 391 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 481 KiB After Width: | Height: | Size: 4 MiB |
Before Width: | Height: | Size: 73 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 616 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 616 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 1.3 MiB |
8
files/assets/images/TheMotte/sources.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
alert.webp: https://unsplash.com/photos/RBwBmTOkNlc
|
||||
banner.webp: https://unsplash.com/photos/j-eOUoVUmQQ
|
||||
cover.webp: https://unsplash.com/photos/1JBOZwuW7sI
|
||||
default_text.webp: https://unsplash.com/photos/xG8IQMqMITM
|
||||
headericon.webp: https://unsplash.com/photos/RBwBmTOkNlc
|
||||
icon.webp: https://unsplash.com/photos/RBwBmTOkNlc
|
||||
logo.webp: CUSTOM
|
||||
site_preview.webp: https://unsplash.com/photos/QTGIHhAhdMU
|
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 870 B After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 926 B |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 964 B |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 792 B |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 356 B |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 534 B |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 2.4 KiB |