This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/app/assets/stylesheets/application.scss

93 lines
1.8 KiB
SCSS
Raw Normal View History

2018-05-07 16:06:01 -04:00
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_self
*/
2018-05-24 16:59:20 -04:00
@import "tabler/variables";
2018-05-07 16:06:01 -04:00
@import "bootstrap";
2018-06-15 11:23:20 -04:00
@import "tabler-custom";
2018-05-24 16:59:20 -04:00
@import "tabler.plugins";
2018-06-15 11:23:20 -04:00
@import "main";
@import "rooms";
@import "sessions";
2018-06-01 14:20:40 -04:00
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext);
2018-05-31 16:54:48 -04:00
$background-color: #F5F7FB;
2018-06-13 15:51:10 -04:00
$error-background-color: #EFE6E6;
2018-05-24 16:59:20 -04:00
2018-06-01 17:28:39 -04:00
$footer-height: 80px;
2018-05-31 22:15:18 -04:00
2018-05-07 16:06:01 -04:00
html, body {
width: 100%;
height: 100%;
2018-05-31 16:54:48 -04:00
background-color: white;
2018-05-28 18:10:20 -04:00
}
2018-06-13 15:51:10 -04:00
a {
text-decoration: none !important;
cursor: pointer;
2018-06-01 17:28:39 -04:00
}
2018-05-28 18:10:20 -04:00
.wrapper {
2018-06-08 14:44:08 -04:00
height: calc(100% - #{$footer-height});
2018-05-31 15:04:18 -04:00
position: relative;
2018-05-28 18:10:20 -04:00
}
.footer {
width: 100%;
2018-06-01 17:28:39 -04:00
position: abolute;
bottom: 0px;
2018-05-24 16:59:20 -04:00
}
2018-06-13 15:51:10 -04:00
.table-responsive {
overflow: visible;
2018-05-07 16:06:01 -04:00
}
.background {
2018-06-13 15:51:10 -04:00
background-color: $background-color;
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.error-section {
background-color: $error-background-color;
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.font-weight-400 {
font-weight: 400;
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.subtitle {
font-size: 25px;
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.force-bottom {
display: flex;
justify-content: flex-end;
flex-direction: column;
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.invite-link-input {
width: 45%;
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.no-border-top {
td {
border-top: none;
}
2018-05-07 16:06:01 -04:00
}
2018-06-13 15:51:10 -04:00
.force-text-normal {
color: #495057;
2018-05-24 16:59:20 -04:00
}