]> 472bisson.ca Git - magnet.git/blobdiff - style.css
Fixes
[magnet.git] / style.css
index 34810554f5d2dd9f1ecddf766bae708bae57d569..05200a23b7fc28ccf81a6c95c61a5621e31fe7c8 100644 (file)
--- a/style.css
+++ b/style.css
@@ -1,47 +1,38 @@
-/* CSS layout */
 
-body {
-    margin: 5px;
-    padding: 5px;
-    font-family: monospace;
-}
+/* 
+    Created on : 10 Jun, 2018, 9:23:39 PM
+    Author     : Manjunath CV
+*/
 
-input[type=text] {
-    width: 420px;
-    height: 30px;
-    padding: 1px;
+@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');
 
-    font-family:monospace;
-    font-size:large;
+body, h2 {
+    font-family: "Fira Sans", sans-serif;
+    font-weight: 400;
+    font-style: normal;
+    
 }
 
-textarea {
-    width: 420px;
-    padding: 1px;
-
-    font-family:monospace;
-    font-size:medium;
+#magnet {
+    font-family: 'Roboto Mono', monospace;
 }
 
-input[type=submit] {
-
-    font-family:monospace;
-    font-size:large;
-
-    border: 1px solid #777777;
-    background: #6e9e2d;
-    color: white;
-    font: bold 11px 'Trebuchet MS';
-    padding: 4px;
-    height: 30px;
-    cursor: pointer;
-    -moz-border-radius: 4px;
-    -webkit-border-radius: 4px;
+section {
+    margin: auto;
+    width: 850px;
 }
 
-/*
+footer {
+    width:100%;
+    text-align: center;
+}
 
-http://www.tdl.com/~jrb/jrb7/css_textfield0.html
-http://www.red-team-design.com/style-an-input-button
 
-*/
\ No newline at end of file
+/* Responsive layout - makes the two columns/boxes 
+   stack on top of each other instead of next to 
+   each other, on small screens */
+@media (max-width: 850px) {
+    section {
+        width: 95%;
+    }
+}