forked from CGM_Public/pretix_original
* Replace SCSS compilation with CSS variables * Update tests * Update src/pretix/presale/style.py Co-authored-by: Mira <weller@rami.io> * Update src/pretix/presale/context.py Co-authored-by: Mira <weller@rami.io> * Update src/pretix/presale/views/widget.py Co-authored-by: Mira <weller@rami.io> * Update src/pretix/presale/context.py Co-authored-by: Mira <weller@rami.io> * Update src/pretix/static/pretixbase/scss/_variables.scss Co-authored-by: Richard Schreiber <schreiber@rami.io> * Last minor changes * Rename file --------- Co-authored-by: Mira <weller@rami.io> Co-authored-by: Richard Schreiber <schreiber@rami.io>
20 lines
436 B
SCSS
20 lines
436 B
SCSS
@import "_theme_variables.scss";
|
|
@import "_bootstrap_vars.scss";
|
|
@import "../../bootstrap/scss/_bootstrap.scss";
|
|
@import "_theme.scss";
|
|
@import "../../fontawesome/scss/font-awesome.scss";
|
|
|
|
|
|
body {
|
|
background: #ececec;
|
|
text-align: center;
|
|
padding: 50px 0;
|
|
}
|
|
|
|
.big-animated-icon {
|
|
-webkit-animation: fa-spin 8s infinite linear;
|
|
animation: fa-spin 8s infinite linear;
|
|
font-size: 200px;
|
|
color: $brand-primary;
|
|
}
|