-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
97 lines (84 loc) · 1.85 KB
/
estilo.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
89
90
91
92
93
94
95
96
97
html, body {
margin: 0;
height: 100%;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background: rgb(198,238,255);
background: linear-gradient(51deg, rgba(198,238,255,1) 0%, rgba(96,150,255,1) 100%);
}
main{
margin: 25px 0;
width: 100%;
height: 80%;
}
header{
font-size: larger;
width: 100%;
padding: 20px 0;
text-align: center;
}
.content{
height: 75%;
display: flex;
justify-content: space-around;
}
.inputContainer, .outputContainer{
width: 35%;
}
.content textarea{
padding: 5px;
height: 100%;
width: 100%;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: medium;
border: none;
border-radius: 5px;
resize: none;
display: block;
}
textarea::placeholder{
color: gray;
}
.buttonContainer{
display: flex;
justify-content: space-around;
margin:0.3em 0.3em 0.3em 0;
border-radius:0.15em;
box-sizing: border-box;
text-decoration:none;
text-transform:uppercase;
font-weight:400;
text-align:center;
position:relative;
}
.buttonContainer input{
background-color: white;
border-width: 2px;
padding: 10px;
border-radius:5px ;
}
footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 10px;
font-size: small;
text-align: center;
}
footer img{
margin-top: 7px;
width: 15px;
}
@media only screen and (max-width:480px){
.buttonContainer{
display: inline-block;
}
.buttonContainer input{
background-color: white;
border-width: 2px;
margin: 0 0 5px 0;
padding: 5px;
font-size: 12px;
border-radius:5px ;
}
}