aaljabari commited on
Commit
b13ebc4
·
verified ·
1 Parent(s): 7e01f61

Create style.css

Browse files
Files changed (1) hide show
  1. static/style.css +71 -0
static/style.css ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background: #f4f6f9;
4
+ margin: 0;
5
+ padding: 20px;
6
+ }
7
+
8
+ .container {
9
+ max-width: 900px;
10
+ margin: auto;
11
+ background: white;
12
+ padding: 25px;
13
+ border-radius: 12px;
14
+ box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
15
+ }
16
+
17
+ h2 {
18
+ text-align: center;
19
+ margin-bottom: 20px;
20
+ }
21
+
22
+ textarea {
23
+ width: 100%;
24
+ height: 180px;
25
+ padding: 10px;
26
+ font-size: 14px;
27
+ border-radius: 8px;
28
+ border: 1px solid #ccc;
29
+ margin-bottom: 15px;
30
+ }
31
+
32
+ .buttons {
33
+ display: flex;
34
+ gap: 10px;
35
+ margin-bottom: 20px;
36
+ }
37
+
38
+ button {
39
+ flex: 1;
40
+ padding: 12px;
41
+ border: none;
42
+ border-radius: 8px;
43
+ font-size: 15px;
44
+ cursor: pointer;
45
+ color: white;
46
+ }
47
+
48
+ button.ner {
49
+ background: #2e86de;
50
+ }
51
+
52
+ button.re {
53
+ background: #10ac84;
54
+ }
55
+
56
+ button:hover {
57
+ opacity: 0.9;
58
+ }
59
+
60
+ .output-box {
61
+ margin-top: 10px;
62
+ }
63
+
64
+ pre {
65
+ background: #111;
66
+ color: #0f0;
67
+ padding: 15px;
68
+ border-radius: 8px;
69
+ overflow-x: auto;
70
+ min-height: 150px;
71
+ }