-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmediaquery.css
More file actions
51 lines (47 loc) · 913 Bytes
/
mediaquery.css
File metadata and controls
51 lines (47 loc) · 913 Bytes
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
@charset "UTF-8";
/* Todas as demais mídias */
/*Typical Device Breakpoint
-----------------------------------
Celular - 600px — 768px.
Tablets - 768px — 992px.
Desktop - 992px — 1200px.
TVs - 1201px and more.
------------------------------------
*/
@media screen and (min-width: 60px) and (max-width: 768px) {
h1{
font-size: 40px;
}
#calculadora {
width: 80vw;
}
#calculadora > p {
font-size: 30px
}
#altura, #peso{
font-size: 20px;
}
input{
width: 20%;
}
#botao{
width: 100px;
}
#res{
overflow-wrap: break-word;
text-align: center;
font-size: 20px;
}
#img{
width: 400px;
height: 80vh;
}
}
@media screen and (min-height: 600px) and (max-height: 800px) {
#calculadora{
margin-top: 20px;
}
#img{
margin-top: 30px;
}
}