-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (44 loc) · 838 Bytes
/
style.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
body {
margin: 0 auto;
/* Puedes cambiar el color de fondo (background-color) si lo deseas */
background-color: lightblue;
max-width: 80%;
min-width: 500px;
text-align: center;
}
.case h2 {
/* Puedes cambiar el color de fondo (background-color) si lo deseas */
background-color: #e0a45e;
padding: 10px;
margin: 10px;
}
.response {
text-align: start;
border: solid gray 2px;
padding: 10px;
margin: 10px;
}
.response h5 {
margin: 0px;
color: rgb(57, 57, 57);
}
.response h4 {
margin-bottom: 0px;
}
.img {
max-width: 800px;
display: inline-flex;
justify-content: center;
margin: 10px;
}
img{
width: 100%;
height: auto;
}
.hint{
opacity: 0.7;
color: rgb(200, 42, 42);
border: 1px solid;
padding: 5px;
font-weight: bolder;
}