Seyomi commited on
Commit
a509c7e
Β·
verified Β·
1 Parent(s): f1290ec

Update app/static/style.css

Browse files
Files changed (1) hide show
  1. app/static/style.css +75 -0
app/static/style.css CHANGED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3
+ background-color: #f8f9fa;
4
+ color: #333;
5
+ text-align: center;
6
+ padding: 40px 20px;
7
+ }
8
+
9
+ h2 {
10
+ font-size: 2em;
11
+ margin-bottom: 10px;
12
+ color: #2c3e50;
13
+ }
14
+
15
+ p {
16
+ font-size: 1.1em;
17
+ max-width: 600px;
18
+ margin: 0 auto 30px auto;
19
+ line-height: 1.6;
20
+ }
21
+
22
+ form {
23
+ background-color: #ffffff;
24
+ border-radius: 10px;
25
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
26
+ display: inline-block;
27
+ padding: 30px;
28
+ width: 100%;
29
+ max-width: 500px;
30
+ }
31
+
32
+ textarea {
33
+ width: 100%;
34
+ height: 100px;
35
+ padding: 10px;
36
+ font-size: 1em;
37
+ border: 1px solid #ccc;
38
+ border-radius: 6px;
39
+ resize: vertical;
40
+ }
41
+
42
+ input[type="file"],
43
+ input[type="submit"] {
44
+ margin-top: 15px;
45
+ padding: 10px;
46
+ font-size: 1em;
47
+ border-radius: 5px;
48
+ border: 1px solid #ccc;
49
+ width: 100%;
50
+ max-width: 300px;
51
+ }
52
+
53
+ input[type="submit"] {
54
+ background-color: #2ecc71;
55
+ color: white;
56
+ font-weight: bold;
57
+ cursor: pointer;
58
+ border: none;
59
+ }
60
+
61
+ input[type="submit"]:hover {
62
+ background-color: #27ae60;
63
+ }
64
+
65
+ pre {
66
+ font-size: 1.2em;
67
+ color: green;
68
+ font-weight: bold;
69
+ }
70
+
71
+ canvas {
72
+ margin-top: 20px;
73
+ max-width: 600px;
74
+ width: 100%;
75
+ }