-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (93 loc) · 2.09 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');
*{
font-family: 'Fredericka the Great', cursive;
color: #cecece;
cursor:default; /*no quiero el selector de texto en el marcador*/
}
body{
display: flex;
background-image: url(img/163c82a62637c4079e5f4581582cc0d0.jpg);
background-position: center;
background-size: 1450px 800px ;
background-repeat: no-repeat;
}
main {
display: block;
margin-left: 10%;
margin-top: 2%;
}
aside{
font-size: 50px;
margin-left: 8%;
}
.marcador{
margin-top: 7%;
margin-left: 6%;
font-size: 70px;
}
.fila{
display: flex;
gap: 5px;
}
.casilla {
display: flex;
align-items: center;
justify-content: center;
width: 150px;
height: 150px;
margin-top: 5px;
font-size: 150px;
font-family: 'Fredericka the Great', cursive;
border: solid 3px #cecece;
text-decoration: none;
}
.casilla:hover {
cursor: pointer;
}
.reset{
animation:flip-scale-up-ver .5s linear both;
}
#reset2{
animation:flip-scale-up-ver .5s linear both;
}
/* @keyframes flip-scale-up-hor {
0% {
-webkit-transform: scale(1) rotateX(0);
transform: scale(1) rotateX(0);
}
50% {
-webkit-transform: scale(2.5) rotateX(-90deg);
transform: scale(2.5) rotateX(-90deg);
}
100% {
-webkit-transform: scale(1) rotateX(-180deg);
transform: scale(1) rotateX(-180deg);
} */
@keyframes flip-scale-up-ver {
0% {
-webkit-transform: scale(1) rotateY(0);
transform: scale(1) rotateY(0);
}
50% {
-webkit-transform: scale(2.5) rotateY(90deg);
transform: scale(2.5) rotateY(90deg);
}
100% {
-webkit-transform: scale(1) rotateY(180deg);
transform: scale(1) rotateY(180deg);
}
}
@keyframes flip-scale-down-ver{0%{transform:scale(1) rotateY(0)}50%{transform:scale(.4) rotateY(-90deg)}100%{transform:scale(1) rotateY(-180deg)}}
.temp{
display: flex;
width: 2%;
margin-top: 2%;
font-size: 100px;
}
.icono{
font-size: 40px;
width: 20%;
margin-top: 80%;
}
.temporizador{
}