chore: initial import for test contour with k3s CI
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
// font-weight helper:
|
||||
|
||||
// 100 Extra Light or Ultra Light;
|
||||
// 200 Light or Thin; 300 Book or Demi;
|
||||
// 400 Regular or Normal;
|
||||
// 500 Medium;
|
||||
// 600 Semibold or Demibold;
|
||||
// 700 Bold;
|
||||
// 800 Black or Extra Bold or Heavy;
|
||||
// 900 Extra Black or Fat or Ultra Black
|
||||
|
||||
|
||||
@mixin font($f-name, $f-style, $f-weight, $f-url){
|
||||
@font-face{
|
||||
font-family: $f-name;
|
||||
font-style: $f-style;
|
||||
font-weight: $f-weight;
|
||||
src: url($f-url) format('woff');
|
||||
}
|
||||
}
|
||||
|
||||
@include font('Circe', normal, 100, '../fonts/Circe-Thin.woff');
|
||||
@include font('Circe', normal, 200, '../fonts/Circe-ExtraLight.woff');
|
||||
@include font('Circe', normal, 300, '../fonts/Circe-Light.woff');
|
||||
@include font('Circe', normal, 400, '../fonts/Circe-Regular.woff');
|
||||
@include font('Circe', normal, bold, '../fonts/Circe-Bold.woff');
|
||||
@include font('Circe', normal, 800, '../fonts/Circe-ExtraBold.woff');
|
||||
@@ -0,0 +1,44 @@
|
||||
/*!
|
||||
* Bootstrap v4.6.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
*/
|
||||
|
||||
@import "node_modules/bootstrap/scss/functions";
|
||||
@import "node_modules/bootstrap/scss/variables";
|
||||
@import "node_modules/bootstrap/scss/mixins";
|
||||
@import "node_modules/bootstrap/scss/root";
|
||||
@import "node_modules/bootstrap/scss/reboot";
|
||||
@import "node_modules/bootstrap/scss/type";
|
||||
@import "node_modules/bootstrap/scss/images";
|
||||
@import "node_modules/bootstrap/scss/code";
|
||||
@import "node_modules/bootstrap/scss/grid";
|
||||
@import "node_modules/bootstrap/scss/tables";
|
||||
@import "node_modules/bootstrap/scss/forms";
|
||||
@import "node_modules/bootstrap/scss/buttons";
|
||||
@import "node_modules/bootstrap/scss/transitions";
|
||||
@import "node_modules/bootstrap/scss/dropdown";
|
||||
@import "node_modules/bootstrap/scss/button-group";
|
||||
@import "node_modules/bootstrap/scss/input-group";
|
||||
@import "node_modules/bootstrap/scss/custom-forms";
|
||||
@import "node_modules/bootstrap/scss/nav";
|
||||
@import "node_modules/bootstrap/scss/navbar";
|
||||
@import "node_modules/bootstrap/scss/card";
|
||||
@import "node_modules/bootstrap/scss/breadcrumb";
|
||||
@import "node_modules/bootstrap/scss/pagination";
|
||||
@import "node_modules/bootstrap/scss/badge";
|
||||
@import "node_modules/bootstrap/scss/jumbotron";
|
||||
@import "node_modules/bootstrap/scss/alert";
|
||||
@import "node_modules/bootstrap/scss/progress";
|
||||
@import "node_modules/bootstrap/scss/media";
|
||||
@import "node_modules/bootstrap/scss/list-group";
|
||||
@import "node_modules/bootstrap/scss/close";
|
||||
@import "node_modules/bootstrap/scss/toasts";
|
||||
@import "node_modules/bootstrap/scss/modal";
|
||||
@import "node_modules/bootstrap/scss/tooltip";
|
||||
@import "node_modules/bootstrap/scss/popover";
|
||||
@import "node_modules/bootstrap/scss/carousel";
|
||||
@import "node_modules/bootstrap/scss/spinners";
|
||||
@import "node_modules/bootstrap/scss/utilities";
|
||||
@import "node_modules/bootstrap/scss/print";
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,70 @@
|
||||
@import "font-awesome";
|
||||
@import 'fonts';
|
||||
// @import 'bootstrap/dist/css/bootstrap-grid.css';
|
||||
|
||||
#popup .btn.btn-primary, .btn-primary:hover, .btn.btn-primary:focus {
|
||||
background-color: #3a613e;
|
||||
border-color: #3a613e;
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
#popup .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #3a613e;
|
||||
border-color: #3a613e;
|
||||
}
|
||||
|
||||
#popup a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#popup a:hover {
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#popup .license-link {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
#popup .w-100 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#popup .d-none {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#popup .mb-3 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#popup .veretify-code-block {
|
||||
align-items: flex-end;
|
||||
margin-top: 15px;
|
||||
display: grid;
|
||||
grid-gap: 0px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-rows: auto;
|
||||
grid-template-areas:
|
||||
"m m h"
|
||||
"c c c";
|
||||
}
|
||||
|
||||
#popup .veretify-code-block .form-control {
|
||||
grid-area: m;
|
||||
}
|
||||
|
||||
#popup .veretify-code-block .input-group-append {
|
||||
grid-area: h;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#popup .veretify-code-block .valid-veretify-phone {
|
||||
grid-area: c;
|
||||
}
|
||||
|
||||
.mt-3, .my-3 {
|
||||
margin-top: 1rem !important;
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
@import "font-awesome";
|
||||
@import 'fonts';
|
||||
@import 'bootstrap';
|
||||
|
||||
.btn.btn-primary, .btn-primary:hover, .btn.btn-primary:focus {
|
||||
background-color: #3a613e;
|
||||
border-color: #3a613e;
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #3a613e;
|
||||
border-color: #3a613e;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.license-link {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.smart-captcha {
|
||||
width: calc(100% - 10px);
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
#refund-form label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#refund-form .form-group {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.refund-wrapper .alert {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user