diff options
author | Sam Potts <sam@potts.es> | 2018-03-17 23:30:16 +1100 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2018-03-17 23:30:16 +1100 |
commit | 600f0eb8a3cf49f5268e5c15487797d496bc19b6 (patch) | |
tree | ae7d43ee753035458e5927b66eb588ff26d58afd /demo/src/sass/layout/error.scss | |
parent | e0562752eaa4553466b78fb6828d05147a0891d1 (diff) | |
parent | 5db73b13276bf50357cc98896421318de66ab042 (diff) | |
download | plyr-600f0eb8a3cf49f5268e5c15487797d496bc19b6.tar.lz plyr-600f0eb8a3cf49f5268e5c15487797d496bc19b6.tar.xz plyr-600f0eb8a3cf49f5268e5c15487797d496bc19b6.zip |
Merge branch 'beta'
# Conflicts:
# readme.md
Diffstat (limited to 'demo/src/sass/layout/error.scss')
-rw-r--r-- | demo/src/sass/layout/error.scss | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/demo/src/sass/layout/error.scss b/demo/src/sass/layout/error.scss new file mode 100644 index 00000000..385ecbf3 --- /dev/null +++ b/demo/src/sass/layout/error.scss @@ -0,0 +1,30 @@ +// ========================================================================== +// Errors (AWS pages) +// ========================================================================== + +// Error page +html.error, +.error body { + height: 100%; +} + +html.error { + background: $page-background; + background-attachment: fixed; +} + +.error body { + align-items: center; + display: flex; + width: 100%; +} + +.error main { + padding: $spacing-base; + text-align: center; + width: 100%; + + p { + @include font-size($font-size-large); + } +} |