Equityone commited on
Commit
a26557b
·
verified ·
1 Parent(s): d9bdf68

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +20 -0
style.css ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* style.css */
2
+ .container {
3
+ max-width: 1200px;
4
+ margin: auto;
5
+ }
6
+ .welcome {
7
+ text-align: center;
8
+ margin: 20px 0;
9
+ padding: 20px;
10
+ background: linear-gradient(135deg, #1e293b, #334155);
11
+ border-radius: 10px;
12
+ color: white;
13
+ }
14
+ .controls-group {
15
+ background: #2d3748;
16
+ padding: 15px;
17
+ border-radius: 5px;
18
+ margin: 10px 0;
19
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
20
+ }