Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,82 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
|
|
|
| 1 |
+
* {
|
| 2 |
+
box-sizing: border-box;
|
|
|
|
| 3 |
}
|
| 4 |
|
| 5 |
+
html, body {
|
| 6 |
+
margin: 0 !important;
|
| 7 |
+
padding: 0 !important;
|
| 8 |
+
overflow: hidden;
|
| 9 |
}
|
| 10 |
|
| 11 |
+
#hw-canvas {
|
| 12 |
+
position:fixed;
|
| 13 |
+
left:0;
|
| 14 |
+
top:0;
|
| 15 |
+
width:100%;
|
| 16 |
+
height:100%;
|
| 17 |
+
z-index: -1;
|
| 18 |
}
|
| 19 |
|
| 20 |
+
#user-input {
|
| 21 |
+
padding: 5px;
|
| 22 |
+
margin: 20px 20px 20px 20px;
|
| 23 |
+
height: 50px;
|
| 24 |
+
font-size: 25px;
|
| 25 |
+
line-height: 40px;
|
| 26 |
+
border: gray solid 0.2ch;
|
| 27 |
+
width: calc(100% - 40px);
|
| 28 |
}
|
| 29 |
|
| 30 |
+
#bias {
|
| 31 |
+
margin-left: 20px;
|
| 32 |
+
display: inline;
|
| 33 |
+
}
|
| 34 |
+
#writers {
|
| 35 |
+
display: inline;
|
| 36 |
+
margin-left: 20px;
|
| 37 |
+
height: 40px;
|
| 38 |
+
border: #008CBA solid 0.3ch;
|
| 39 |
+
margin-bottom: 20px;
|
| 40 |
+
}
|
| 41 |
+
/* #btn {
|
| 42 |
+
|
| 43 |
+
height: 50px;
|
| 44 |
+
border: gray solid 0.1ch;
|
| 45 |
+
background-color: red;
|
| 46 |
+
} */
|
| 47 |
+
|
| 48 |
+
.button {
|
| 49 |
+
margin-left: 20px;
|
| 50 |
+
border: none;
|
| 51 |
+
color: white;
|
| 52 |
+
padding: 16px 32px;
|
| 53 |
+
text-align: center;
|
| 54 |
+
text-decoration: none;
|
| 55 |
+
display: inline;
|
| 56 |
+
font-size: 16px;
|
| 57 |
+
margin: 4px 2px;
|
| 58 |
+
transition-duration: 0.4s;
|
| 59 |
+
cursor: pointer;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.button1 {
|
| 63 |
+
background-color: white;
|
| 64 |
+
color: black;
|
| 65 |
+
border: 2px solid #4CAF50;
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
.button1:hover {
|
| 69 |
+
background-color: #4CAF50;
|
| 70 |
+
color: white;
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
.button2 {
|
| 74 |
+
background-color: white;
|
| 75 |
+
color: black;
|
| 76 |
+
border: 2px solid #008CBA;
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
.button2:hover {
|
| 80 |
+
background-color: #008CBA;
|
| 81 |
+
color: white;
|
| 82 |
}
|