summaryrefslogtreecommitdiff
path: root/client/colors.less
diff options
context:
space:
mode:
Diffstat (limited to 'client/colors.less')
-rw-r--r--client/colors.less37
1 files changed, 37 insertions, 0 deletions
diff --git a/client/colors.less b/client/colors.less
new file mode 100644
index 0000000..87fe959
--- /dev/null
+++ b/client/colors.less
@@ -0,0 +1,37 @@
+body {
+ .page {
+ div.login-wrapper {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: auto;
+ min-height: 1000px;
+ div.login {
+ text-align: center;
+ flex: 0 0 auto;
+ h1 {
+ color: #67C288;
+ font-size: 6em;
+ font-weight: bold;
+ }
+ h2 {
+ margin-top: 80px;
+ font-size: 3.3em;
+ font-weight: bold;
+ }
+ button.login {
+ margin-top: 100px;
+ color: #fff;
+ font-size: 2.8em;
+ background-color: #67C288;
+ padding: 7px 35px;
+ border: 0px;
+ line-height: 72px;
+ &:hover, &:active {
+ background-color: #5DA577;
+ }
+ }
+ }
+ }
+ }
+}