-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.css
76 lines (60 loc) · 1.13 KB
/
mobile.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
/*RESPONSIVIDADE SMARPHONES COM A ORIENTAÇÃO EM PAISAGEM*/
@media (max-height: 600px) and (orientation: landscape) {
h1 {
font-size: 1em;
}
h3 {
font-size: .7em;
}
#clock{
font-size: .5em;
text-align: center;
}
#hour{
display: flex;
justify-content: center;
align-items: center;
}
button {
border: .5rem;
width: fit-content;
height: fit-content;
font-size: .7em;
}
#startScreen{
position: absolute;
bottom: 4px;
}
.backgroundAnimation{
animation: slideright 25s infinite linear;
}
}
/*RESPONSIVIDADE SMARPHONES COM A ORIENTAÇÃO EM RETRATO*/
@media (max-width: 600px) and (orientation: portrait) {
h1 {
font-size: 1.5em;
}
h3 {
font-size: .6em;
}
#clock {
font-size: 1em;
text-align: center;
border-bottom: none;
border-right: 1px black solid;
}
#hour {
display: flex;
justify-content: center;
align-items: center;
}
button {
border: .5rem;
width: auto;
height: auto;
font-size: .7em;
}
.backgroundAnimation {
animation: slideright 2000s infinite linear;
}
}