geethareddy commited on
Commit
7a05a07
·
verified ·
1 Parent(s): 7d7c967

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +29 -0
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
+ }