Spaces:
Running
Running
File size: 1,254 Bytes
84c7a42 62c7c1f 84c7a42 62c7c1f 84c7a42 62c7c1f 84c7a42 62c7c1f 84c7a42 62c7c1f |
1 2 3 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
* {
box-sizing: border-box;
}
html, body {
margin: 0 !important;
padding: 0 !important;
overflow: hidden;
}
#hw-canvas {
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
z-index: -1;
}
#user-input {
padding: 5px;
margin: 20px 20px 20px 20px;
height: 50px;
font-size: 25px;
line-height: 40px;
border: gray solid 0.2ch;
width: calc(100% - 40px);
}
#bias {
margin-left: 20px;
display: inline;
}
#writers {
display: inline;
margin-left: 20px;
height: 40px;
border: #008CBA solid 0.3ch;
margin-bottom: 20px;
}
/* #btn {
height: 50px;
border: gray solid 0.1ch;
background-color: red;
} */
.button {
margin-left: 20px;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.button1:hover {
background-color: #4CAF50;
color: white;
}
.button2 {
background-color: white;
color: black;
border: 2px solid #008CBA;
}
.button2:hover {
background-color: #008CBA;
color: white;
}
|