Anonymusmee commited on
Commit
eb9357b
·
verified ·
1 Parent(s): 619719f

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +37 -0
static/style.css ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
4
+ color: #333;
5
+ margin: 0;
6
+ padding: 20px;
7
+ }
8
+ .container {
9
+ max-width: 900px;
10
+ margin: auto;
11
+ background: white;
12
+ padding: 2rem;
13
+ border-radius: 15px;
14
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
15
+ }
16
+ h1, h2, h3 { color: #FF6B6B; text-align: center; }
17
+ textarea { width: 100%; height: 100px; font-size: 16px; padding: 10px; border-radius: 8px; border: 1px solid #ccc; }
18
+ button {
19
+ display: block;
20
+ width: 100%;
21
+ padding: 15px;
22
+ margin-top: 10px;
23
+ font-size: 18px;
24
+ font-weight: bold;
25
+ color: white;
26
+ background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
27
+ border: none;
28
+ border-radius: 25px;
29
+ cursor: pointer;
30
+ transition: transform 0.2s;
31
+ }
32
+ button:hover { transform: scale(1.02); }
33
+ .output-area { margin-top: 2rem; }
34
+ video { width: 100%; border-radius: 8px; background-color: #eee; }
35
+ pre { background-color: #f4f4f4; padding: 1rem; border-radius: 5px; white-space: pre-wrap; word-wrap: break-word; }
36
+ .loader { border: 8px solid #f3f3f3; border-radius: 50%; border-top: 8px solid #4b6cb7; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 20px auto; }
37
+ @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }