-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (115 loc) · 2.37 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300&family=Poppins:wght@400;700&display=swap');
body{
font-family: 'Poppins', sans-serif;
background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
* {
box-sizing: border-box;
}
.main-container {
max-width: 800px;
margin: auto;
}
.bg-1 {
margin: 55px auto 218px auto;
text-align: center;
}
.t-stroke {
color: transparent;
-moz-text-stroke-width: 2px;
-webkit-text-stroke-width: 2px;
-moz-text-stroke-color: #000000;
-webkit-text-stroke-color: #ffffff;
}
.t-shadow {
text-shadow: 6px 6px #970f6b;
}
h1#msg-final {
text-align: center;
color: crimson;
transition: all .5s ease;
transform: scale(0);
min-height: 50px;
margin-bottom: 0;
}
#acierto {
text-align: center;
min-height: 24px;
transform: scale(0);
}
.acierto {
animation: zoomInOut 1s ease;
}
.rojo {
color: red;
}
.verde {
color: green;
}
@keyframes zoomInOut {
0% { transform: scale(0); }
50% { transform: scale(1); }
70% { transform: scale(1); }
100% { transform: scale(0); }
}
h2.palabra {
margin: -117px auto 90px auto;
text-align: center;
color: #7e046a;
text-transform: uppercase;
letter-spacing: 6px;
font-size: 42px;
}
.flex-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 10px auto;
}
.no-wrap {
flex-wrap: nowrap !important;
}
.col {
width: 50%;
text-align: center;
}
#turnos h3 {
margin: auto;
}
h3 span {
color: #460072;
font-weight: bold;
}
.letra:disabled {
color:rgb(255 255 255 / 50%)
}
picture {
position: relative;
}
picture img {
position: absolute;
top: -203px;
left: -205px;
height: 225px;
}
#image5, #image4, #image3,
#image2, #image1, #image0 {
opacity: 0;
transition: opacity .3s ease;
}
.fade-in {
opacity: 1 !important;
}
.encuadre {
border: 2px dashed crimson;
padding: 3px 2px 2px 6px;
}
.btn-primary{
background-image: linear-gradient(to right, #2b5876 0%, #4e4376 51%, #2b5876 100%);
}
.btn-primary:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}