rairo commited on
Commit
3c2af35
·
verified ·
1 Parent(s): 780aa14

Create static/css/styles.css

Browse files
Files changed (1) hide show
  1. static/css/styles.css +34 -0
static/css/styles.css ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* static/css/styles.css */
2
+ body {
3
+ font-family: Arial, sans-serif;
4
+ margin: 0;
5
+ padding: 0;
6
+ background: #f5f5f5;
7
+ }
8
+
9
+ header {
10
+ background: #333;
11
+ color: #fff;
12
+ padding: 10px;
13
+ text-align: center;
14
+ }
15
+
16
+ .container {
17
+ padding: 20px;
18
+ }
19
+
20
+ #three-canvas {
21
+ width: 100%;
22
+ height: 300px;
23
+ background: #000;
24
+ margin-bottom: 20px;
25
+ }
26
+
27
+ input[type="text"], button {
28
+ padding: 10px;
29
+ font-size: 1em;
30
+ }
31
+
32
+ button {
33
+ cursor: pointer;
34
+ }