Added error page, Added drawings, Improved composer
Update .gitignore, .htaccess, and 24 more files...
BIN
resources/NibblePoker/images/drawings/computer_v0_dead.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
resources/NibblePoker/images/drawings/computer_v0_empty.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
resources/NibblePoker/images/drawings/computer_v0_happy.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
resources/NibblePoker/images/drawings/computer_v1_dead.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 4.6 KiB |
BIN
resources/NibblePoker/images/drawings/computer_v1_empty.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
resources/NibblePoker/images/drawings/computer_v1_happy.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.9 KiB |
@@ -44,7 +44,7 @@
|
||||
@import 'site/body';
|
||||
@import 'site/layout'; // Has manual disabling of some core stuff in specific situations and a shit-tier fix for tables.
|
||||
@import 'site/hr';
|
||||
//@import 'site/scrollbar';
|
||||
@import 'site/scrollbar';
|
||||
@import 'site/image';
|
||||
@import 'site/wedge';
|
||||
@import 'site/input';
|
||||
|
@@ -30,6 +30,18 @@
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
#error-page-skit {
|
||||
max-width: 40%;
|
||||
height: auto;
|
||||
position: absolute;
|
||||
bottom: 1.5em;
|
||||
right: 1.5em;
|
||||
filter: drop-shadow(0 0 0.5rem #0000007F);
|
||||
mix-blend-mode: multiply;
|
||||
//opacity: 0.25;
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
// Logo colors
|
||||
//.npl1, .npl6 {
|
||||
//}
|
||||
|
@@ -30,4 +30,12 @@ button {
|
||||
&:hover {
|
||||
background-color: #{$color-background-button-hover};
|
||||
}
|
||||
|
||||
&.primary {
|
||||
background-color: #{$color-background-button-primary};
|
||||
|
||||
&:hover {
|
||||
background-color: #{$color-background-button-primary-hover};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -29,6 +29,12 @@ table.stylish {
|
||||
}
|
||||
}
|
||||
|
||||
&.table-h-p-s {
|
||||
th {
|
||||
padding: calc(#{$margin-base-size} * 0.75);
|
||||
}
|
||||
}
|
||||
|
||||
&.table-p-s {
|
||||
td, th {
|
||||
padding: calc(#{$margin-base-size} * 0.75);
|
||||
|
@@ -60,6 +60,9 @@ $color-apollo-custom-10: mix($color-apollo-40, $color-apollo-41, 75%);
|
||||
|
||||
$color-apollo-custom-20: mix($color-apollo-39, $color-apollo-38, 60%);
|
||||
|
||||
$color-apollo-custom-30: mix($color-apollo-01, $color-apollo-03, 80%); // Primary button
|
||||
$color-apollo-custom-31: mix($color-apollo-01, $color-apollo-03, 65%); // Primary button hover
|
||||
|
||||
//$color-test-01: mix(#7b6aa5, #000000, 33%);
|
||||
$color-test-02: #007c7d;
|
||||
|
||||
@@ -114,6 +117,9 @@ $color-background-inputs: $color-apollo-40;
|
||||
$color-background-button: $color-apollo-40;
|
||||
$color-background-button-hover: $color-apollo-custom-10;
|
||||
|
||||
$color-background-button-primary: #{$color-apollo-custom-30};
|
||||
$color-background-button-primary-hover: #{$color-apollo-custom-31};
|
||||
|
||||
$_color-white-lighter: rgb(253, 255, 251);
|
||||
$_color-white-light: rgb(235, 237, 233);
|
||||
$_color-white-medium: rgb(217, 222, 218);
|
||||
@@ -136,6 +142,16 @@ $_color-blue-dark: #3353b6;
|
||||
$_color-white-muted: #FFFFFF96;
|
||||
//rgba(255, 255, 255, 0.6)
|
||||
|
||||
|
||||
/* Variables > Scrollbar */
|
||||
|
||||
//$color-scrollbar-border: rgba(0, 0, 0, 0.15);
|
||||
$color-scrollbar-border: $color-border-all;
|
||||
|
||||
$scrollbar-size: 1.25em;
|
||||
|
||||
|
||||
|
||||
/* Variables > Others */
|
||||
|
||||
$border-base-radius: 5px;
|
||||
|