diff --git a/src/layouts/index.html b/src/layouts/index.html index 7d2ad2f..357ce35 100644 --- a/src/layouts/index.html +++ b/src/layouts/index.html @@ -12,5 +12,10 @@ +
+
+ Authenticate with tea +
+
{{ end }} diff --git a/src/layouts/partials/full-width-cta.html b/src/layouts/partials/full-width-cta.html new file mode 100644 index 0000000..176f88a --- /dev/null +++ b/src/layouts/partials/full-width-cta.html @@ -0,0 +1,2 @@ +
+
diff --git a/src/layouts/partials/navbar.html b/src/layouts/partials/navbar.html index 8c2d5d2..f5212ed 100644 --- a/src/layouts/partials/navbar.html +++ b/src/layouts/partials/navbar.html @@ -1,6 +1,6 @@ +
diff --git a/src/static/Images/tea-logo-1.png b/src/static/Images/tea-logo-1.png new file mode 100644 index 0000000..b797b4e Binary files /dev/null and b/src/static/Images/tea-logo-1.png differ diff --git a/src/static/css/style.css b/src/static/css/style.css index 539790e..42bfe5f 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -18,10 +18,13 @@ body{ /* Navbar General */ +div.container-fluid.top-nav{ + padding-left: 0px !important; +} + .navbar{ background-color: #1a1a1a !important; height: 80px; - border-bottom: 2px solid #949494; } .nav-item{ @@ -115,3 +118,44 @@ p{ } } + +/* Buttons */ + +a{ + +} + +.btn-primary{ + padding: 65px 80px; + border-radius: 0px !important; + font-family: "pp-neue-machina", sans-serif; + text-transform: uppercase; + font-size: 38px; + border-left: 2px solid #949494 !important; + border-right: 2px solid #949494 !important; + background-color: #1a1a1a !important; + outline: none !important; + box-shadow: none !important; + text-align: left; + border-top-color:#1a1a1a; + border-bottom-color: #1a1a1a; +} + +.btn-primary:hover{ + background-color: #00ffd0 !important; + color: #1a1a1a; + border-top-color:#00ffd0; + border-bottom-color:#00ffd0; +} + +.button-container{ + padding: 0px 160px; +} + +/* Spacers & Dividers */ + +hr{ + border-bottom: 2px solid #949494 !important; + opacity: 1; + margin:0px !important; +}