-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (76 loc) · 1.61 KB
/
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
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
/* use this for production https://rawcdn.githack.com/thomazpougy/desafio-ou-desafio/94379cc6486f9c8a322fc5cffd11fa3caef5714e/style.css */
/* use this for development https://raw.githack.com/thomazpougy/desafio-ou-desafio/main/style.css */
/* SECTIONS */
#jogo{
display: none;
}
#seletor{
display: block;
}
/* ELEMENTOS */
body {
font-family: Arial,sans-serif;
font-family: 'Montserrat', sans-serif;
background-color:LightBlue;
}
#titulo-seletor{
font-weight: bold;
padding-top: 3%;
}
.header-seletor{
padding: 10% 2% 2% 8%;
}
#botao_desafio{
margin-top: 5rem;
display: block;
font-weight: bold;
}
#botao_voltar{
display: none;
margin-bottom: 2rem;
}
#carta{
height: 26rem;
width: 15rem;
background-color: LightGoldenRodYellow;
margin: 2rem auto 2rem auto;
padding-top: 0.5rem;
}
.corpo_desafio{
height: 14rem;
width: 13.5em;
background-color: Gainsboro;
margin: 0.5rem auto;
padding-top: 1.5rem;
padding-right: 0.5rem;
padding-left: 00.5rem;
text-align: center;
font-weight: bolder;
}
.prenda{
margin: 0 auto;
padding: 5% 5%;
}
#container-navbar{
width: 50%;
}
.card{
margin: 5%;
}
/* TEXTO */
.titulo_prenda{
font-weight: bold;
}
/* DINAMICA */
.estado0{
position: absolut;
transform: perspective(500px) rotatey(0deg);
transition: 2s ease;
backface-visibility: hidden;
}
.estado1{
position: absolut;
transform: perspective(500px) rotatey(360deg);
transition: 2s ease;
backface-visibility: hidden;
}