summaryrefslogtreecommitdiffstats
path: root/nfsw/static/terms.css
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-24 22:15:47 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-24 22:15:47 -0400
commitac7c3863187585a8c98881458fffda19135c4e54 (patch)
treeca1a5dcd32da90cb254e25703b0f6068a96c97f9 /nfsw/static/terms.css
parentd181386968a1b5d6c1051e5b13dd3597747e2097 (diff)
/terms: Prettify.
Diffstat (limited to 'nfsw/static/terms.css')
-rw-r--r--nfsw/static/terms.css70
1 files changed, 70 insertions, 0 deletions
diff --git a/nfsw/static/terms.css b/nfsw/static/terms.css
new file mode 100644
index 0000000..4565432
--- /dev/null
+++ b/nfsw/static/terms.css
@@ -0,0 +1,70 @@
+@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');
+}
+
+.terms-grid {
+ display: grid;
+ grid-template-rows: auto 100vh auto;
+ grid-template-columns: auto 500px auto;
+}
+
+.terms-grid-item {
+ grid-column-start: 2;
+ grid-column-end: 3;
+ grid-row-start: 2;
+ grid-row-end: 3;
+}
+
+header h1, header h2 {
+ font-family: roboto-black;
+}
+
+p, .agree {
+ font-family: roboto-regular;
+}
+
+
+.button-group {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start;
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+
+input[type="submit"] {
+ font-family: roboto-medium;
+ font-size: 16px;
+ border: 1px solid rgb(10, 10,10);
+ background-color: rgb(10,10,10);
+ color: rgb(240,240,240);
+ border-radius: 5px;
+ padding: 8px 10px 8px 10px;
+ cursor: pointer;
+
+}
+
+@media (min-width: 100px) and (max-width: 650px) {
+ .terms-grid {
+ grid-template-columns: auto 85vw auto;
+ }
+
+ .button-group {
+ flex-direction: column;
+ }
+
+ .button {
+ width: 75vw;
+ }
+}