rabiyulfahim commited on
Commit
9b3a714
·
verified ·
1 Parent(s): a713797

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +23 -19
static/style.css CHANGED
@@ -1,32 +1,36 @@
1
  body {
2
- font-family: sans-serif;
3
- background: #fafafa;
4
- padding: 20px;
5
  }
6
 
7
  textarea {
8
- font-family: monospace;
9
- width: 100%;
10
- border-radius: 8px;
11
- padding: 10px;
12
- border: 1px solid #ccc;
13
  }
14
 
15
  button {
16
- padding: 8px 14px;
17
- background-color: #4CAF50;
18
- color: white;
19
- border: none;
20
- border-radius: 6px;
21
- cursor: pointer;
 
 
22
  }
23
 
24
  button:hover {
25
- background-color: #45a049;
26
  }
27
 
28
- pre {
29
- background: #eee;
30
- padding: 10px;
31
- border-radius: 6px;
 
 
32
  }
 
1
  body {
2
+ font-family: "Segoe UI", sans-serif;
3
+ background-color: #fafafa;
4
+ padding: 20px;
5
  }
6
 
7
  textarea {
8
+ width: 100%;
9
+ font-family: monospace;
10
+ padding: 10px;
11
+ border: 1px solid #ccc;
12
+ border-radius: 6px;
13
  }
14
 
15
  button {
16
+ margin-top: 5px;
17
+ margin-right: 10px;
18
+ padding: 8px 14px;
19
+ background-color: #4CAF50;
20
+ color: white;
21
+ border: none;
22
+ border-radius: 6px;
23
+ cursor: pointer;
24
  }
25
 
26
  button:hover {
27
+ background-color: #45a049;
28
  }
29
 
30
+ #viz {
31
+ margin-top: 30px;
32
+ }
33
+
34
+ #controls {
35
+ margin-top: 20px;
36
  }