summaryrefslogtreecommitdiffstats
path: root/nfsw/static
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-21 22:01:55 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-21 22:01:55 -0400
commitbe1f931f13f37e2d05c79f61cbf1a254c002aa20 (patch)
treebd4c04be42fa592a190c7d26bff9f2c70409babc /nfsw/static
parent02b2a19d94a7826e4c15392f89935149f4a2f38c (diff)
nfsw/templates/register.html: Prettify.
Only Desktop view ready. Need to work on the Mobile view.
Diffstat (limited to 'nfsw/static')
-rw-r--r--nfsw/static/auth.css80
-rw-r--r--nfsw/static/fonts/roboto-regular.ttfbin0 -> 171272 bytes
2 files changed, 80 insertions, 0 deletions
diff --git a/nfsw/static/auth.css b/nfsw/static/auth.css
new file mode 100644
index 0000000..834a3b7
--- /dev/null
+++ b/nfsw/static/auth.css
@@ -0,0 +1,80 @@
+@font-face {
+ font-family: roboto-black;
+ src: url('./fonts/roboto-black.ttf');
+}
+
+@font-face {
+ font-family: roboto-medium;
+ src: url('./fonts/roboto-medium.ttf');
+}
+
+@font-face {
+ font-family: roboto-regular;
+ src: url('./fonts/roboto-regular.ttf');
+}
+
+.auth-grid {
+ display: grid;
+ grid-template-rows: 29vh 225px 29vh;
+ grid-template-columns: auto 370px auto;
+}
+
+.auth-grid-item {
+ grid-column-start: 2;
+ grid-column-end: 3;
+ grid-row-start: 2;
+ grid-row-end: 3;
+}
+
+header h1 {
+ font-family: roboto-black;
+ font-size: 35px;
+}
+
+.form-group {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ padding-bottom: 10px;
+}
+
+.button-group {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start;
+}
+
+label {
+ font-family: roboto-medium;
+ font-size: 20px;
+ flex-basis: auto;
+}
+
+input[type="text"],
+input[type="password"] {
+ font-family: roboto-regular;
+ font-size: 20px;
+ border: 3px solid rgb(90,90,90);
+ flex-basis: auto;
+}
+
+input[type="text"],
+input[type="password"] {
+ font-family: roboto-regular;
+ font-size: 20px;
+ border: 3px solid rgb(90,90,90);
+ outline: none;
+ flex-basis: auto;
+}
+
+input[type="submit"] {
+ font-family: roboto-medium;
+ font-size: 20px;
+ border: 1px solid rgb(10, 10,10);
+ background-color: rgb(10,10,10);
+ color: rgb(240,240,240);
+ border-radius: 5px;
+ padding: 11px 13px 11px 13px;
+ cursor: pointer;
+
+}
diff --git a/nfsw/static/fonts/roboto-regular.ttf b/nfsw/static/fonts/roboto-regular.ttf
new file mode 100644
index 0000000..2b6392f
--- /dev/null
+++ b/nfsw/static/fonts/roboto-regular.ttf
Binary files differ