DSDUDEd commited on
Commit
23b831c
·
verified ·
1 Parent(s): 755ec17

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +54 -0
styles.css ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: 'Inter', sans-serif;
3
+ margin: 0;
4
+ padding: 0;
5
+ background: #f5f5f5;
6
+ }
7
+ header {
8
+ background: #1f2937;
9
+ color: white;
10
+ padding: 1rem;
11
+ text-align: center;
12
+ font-size: 1.5rem;
13
+ font-weight: bold;
14
+ }
15
+ .controls {
16
+ display: flex;
17
+ justify-content: center;
18
+ align-items: center;
19
+ gap: 1rem;
20
+ padding: 1rem;
21
+ }
22
+ .controls input, .controls select {
23
+ padding: 0.5rem;
24
+ font-size: 1rem;
25
+ border-radius: 6px;
26
+ border: 1px solid #ccc;
27
+ }
28
+ .controls button {
29
+ padding: 0.5rem 1rem;
30
+ font-size: 1rem;
31
+ cursor: pointer;
32
+ border: none;
33
+ border-radius: 6px;
34
+ background: #4f46e5;
35
+ color: white;
36
+ transition: 0.2s;
37
+ }
38
+ .controls button:hover {
39
+ background: #6366f1;
40
+ }
41
+ #iframes {
42
+ display: flex;
43
+ flex-direction: column;
44
+ align-items: center;
45
+ gap: 1rem;
46
+ padding: 1rem;
47
+ }
48
+ iframe {
49
+ width: 90%;
50
+ max-width: 1000px;
51
+ height: 600px;
52
+ border: 2px solid #ddd;
53
+ border-radius: 10px;
54
+ }