-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
88 lines (76 loc) · 1.35 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 100vh;
margin: 0;
}
header {
text-align: center;
padding: 20px;
background-color: #4CAF50;
color: white;
width: 100%;
}
.main-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
width: 80%;
max-width: 1200px;
margin: 20px 0;
}
.input-container {
width: 45%;
}
textarea {
width: 100%;
height: 150px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.buttons {
display: flex;
justify-content: space-between;
}
button {
padding: 10px 20px;
margin: 5px;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.output-container {
width: 45%;
text-align: center;
}
#outputContainer {
margin-bottom: 20px;
}
#placeholderImage {
width: 40%;
height: auto;
display: block;
margin: 0 auto 20px auto;
}
#outputText {
font-size: 1.8em; /* Tamaño reducido */
color: #666;
}
footer {
padding: 10px;
background-color: #4CAF50;
color: white;
width: 100%;
text-align: center;
}