Spaces:
No application file
No application file
Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* CSS comes here */
|
| 2 |
+
body {
|
| 3 |
+
font-family: arial;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
button {
|
| 7 |
+
padding: 10px;
|
| 8 |
+
background-color: #6a67ce;
|
| 9 |
+
color: #FFFFFF;
|
| 10 |
+
border: 0px;
|
| 11 |
+
cursor: pointer;
|
| 12 |
+
border-radius: 5px;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
#output {
|
| 16 |
+
background-color: #F9F9F9;
|
| 17 |
+
padding: 10px;
|
| 18 |
+
width: 100%;
|
| 19 |
+
margin-top: 20px;
|
| 20 |
+
line-height: 30px;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.hide {
|
| 24 |
+
display: none;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.show {
|
| 28 |
+
display: block;
|
| 29 |
+
}
|