-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilosGenerales.css
102 lines (92 loc) · 1.75 KB
/
estilosGenerales.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
body{
padding: 2% 5%;
}
button{
padding: 10px 15px;
}
li{
margin: 15px 0px;
}
.conclusion {
padding: 10px 15px;
border-radius: 15px;
margin: 10px 5px;
width: min(90%, 650px);
background-color: rgb(209, 127, 33);
margin: 10px auto;
}
.instruccion {
background-color: rgb(174, 202, 235);
border-radius: 15px;
padding: 15px;
margin: 10px auto;
width: min(650px, 90%);
}
.nota {
margin: 5px auto;
border-radius: 15px;
background-color: rgb(233, 185, 150);
padding: 15px;
width: min(600px, 90%);
}
.tituloEjemplo {
font-size: 13px;
font-style: italic;
color: rgb(71, 71, 71);
}
.cuadroEjemplo {
padding: 20px 20px;
border: 2px solid cadetblue;
border-radius: 10px;
margin: 20px 0px;
position: relative;
background-color: rgb(226, 226, 226);
}
.informacion {
margin: 5px auto;
border-radius: 15px;
background-color: rgb(208, 206, 72);
padding: 15px;
width: min(600px, 90%);
}
.resaltado {
padding: 2px 3px;
border-radius: 2px;
}
.subrayado{
padding: 0px 2px;
border-bottom: 2px solid cadetblue;
}
.iconoTexto{
width: 25px;
}
.trianguloBullet{
border:10px solid transparent;
border-left: 10px solid black;
display: inline-block;
margin-right: 20px;
transform-origin: left center;
transition: transform 0.2s;
cursor: pointer;
}
.fadeIn-enter-active{
animation: fadeIn 1.5s;
}
.fadeInAndOut-enter-active{
animation: fadeIn 1.5s;
}
.fadeInAndOut-leave-active{
animation: fadeIn 1.5s reverse;
}
@keyframes fadeIn{
0%{opacity: 0;}
100%{opacity: 1;}
}
.popIn-enter-active{
animation: popIn 0.3s;
}
@keyframes popIn{
0%{scale: 0.1;}
98%{scale: 1.2;}
100%{scale: 1;}
}