-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.css
83 lines (71 loc) · 1.25 KB
/
reset.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
body {
background-image: linear-gradient(#eff5f5, #97ade8);
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
text-align: center;
padding: 30px 0;
}
h1 {
font-size: 40px;
}
.logo {
position: absolute;
top: 25px;
left: 25px;
display: block;
width: 50px;
height: auto;
}
main {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.text-section, .result-section {
width: 100%;
max-width: 600px;
margin: 20px 0;
}
.campoTexto, .resultado {
width: 100%;
height: 150px;
margin-top: 10px;
border: 3px solid blue;
text-align: center;
text-transform: lowercase;
font-size: medium;
padding: 10px;
resize: none;
}
.botones {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.botonE, .botonD, .botonC {
padding: 10px;
cursor: pointer;
flex: 1;
margin: 0 5px;
}
footer {
text-align: right;
padding: 20px;
font-size: 10px;
}
@media (max-width: 768px) {
.campoTexto, .resultado {
height: 120px;
}
.botones {
flex-direction: column;
}
.botonE, .botonD, .botonC {
margin: 5px 0;
}
}