nroggendorff commited on
Commit
54bcd69
·
verified ·
1 Parent(s): 3f7b7d5

Create main.css

Browse files
Files changed (1) hide show
  1. main.css +33 -0
main.css ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .interface-container {
2
+ font-family: 'Roboto', sans-serif;
3
+ background-color: #f0f4f8;
4
+ padding: 2rem;
5
+ max-width: 600px;
6
+ margin: auto;
7
+ }
8
+ .title-text {
9
+ font-size: 1.75rem;
10
+ font-weight: 600;
11
+ color: #374151;
12
+ margin-bottom: 1rem;
13
+ text-align: center;
14
+ }
15
+ .text-box, .btn {
16
+ border-radius: 0.5rem;
17
+ padding: 0.75rem;
18
+ font-size: 1rem;
19
+ }
20
+ .btn {
21
+ background-color: #4f46e5;
22
+ color: white;
23
+ font-weight: 600;
24
+ transition: background-color 0.3s ease;
25
+ }
26
+ .btn:hover {
27
+ background-color: #4338ca;
28
+ }
29
+ .image-output {
30
+ border: 2px solid #4f46e5;
31
+ border-radius: 0.5rem;
32
+ margin-top: 1rem;
33
+ }