-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (52 loc) · 1014 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
52
53
54
55
56
57
58
59
60
61
62
* {
font-family: "Fredoka One", cursive;
text-align: center;
}
body {
background: url("https://gitlab.com/leticiapalaro/imersao-dev_5-alura/-/raw/main/Imagens/papel_de_parede.jpg");
background-size: 111%;
}
#logo-projeto {
width: 100%;
}
.container {
margin: auto;
width: 60%;
}
h2,
#label-numero-chute,
#numero-chute,
#chute-button,
#area-resultado {
font-size: 1.5em;
}
#area-resultado {
border: 2px solid white;
background: white;
border-radius: 100px;
margin-top: 1em;
line-height: 1.5em;
}
#acertou {
border-radius: 100px;
width: 50%;
border: 5px solid rgb(219, 227, 56);
padding: 5px;
}
input {
width: 10%;
}
/* celular */
@media screen and (max-width: 500px) {
.container {
width: 90%;
}
h2,
#label-numero-chute,
#numero-chute,
#chute-button,
#area-resultado {
font-size: 1em;
/*text-transform: uppercase;*/
}
}