adding inconsolata and doing a slight amount of theming
[mudsync.git] / data / web-static / css / main.css
index 43ecd077043d5ae0ea6e99e921baebb3622dc07c..67113ca530720b4de1de7e5b10a0153e46e5106d 100644 (file)
@@ -1,14 +1,28 @@
+@font-face {
+    font-family: 'Inconsolata';
+    font-style: normal;
+    font-weight: 400;
+    src: local('Inconsolata-Regular'), local('Inconsolata'), local('Inconsolata Regular'), url('../fonts/inconsolata/Inconsolata-Regular.ttf');
+}
+
+@font-face {
+    font-family: 'Inconsolata';
+    font-style: normal;
+    font-weight: 700;
+    src: local('Inconsolata-Bold'), local('Inconsolata Bold'), url('../fonts/inconsolata/Inconsolata-Bold.ttf');
+}
+
 *, *:before, *:after {
     box-sizing: border-box;
 }
 
-
 body {
     height: 100%;
     display: flex;
     flex-direction: column;
     border: 0px;
     margin: 0px;
+    font-family: 'Inconsolata', monospace;
 }
 
 #stream-metabox {
@@ -28,3 +42,14 @@ body {
     color: #d5d5d5;
     padding: 10px;
 }
+
+input {
+    border-top-left-radius: 8px;
+    border-top-right-radius: 8px;
+    border-bottom-left-radius: 8px;
+    border-bottom-right-radius: 8px;
+    border: 3px solid #e6e6e6;
+    background-color: #ffffff;
+    padding: 5px;
+    width: 75%;
+}
\ No newline at end of file