Spaces:
Running
Running
File size: 384 Bytes
1598a81 |
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 |
/* CSS comes here */
body {
font-family: arial;
}
button {
padding: 10px;
background-color: #6a67ce;
color: #FFFFFF;
border: 0px;
cursor: pointer;
border-radius: 5px;
}
#output {
background-color: #F9F9F9;
padding: 10px;
width: 100%;
margin-top: 20px;
line-height: 30px;
}
.hide {
display: none;
}
.show {
display: block;
}
|