Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
button.h5p-core-button:visited,
2
button.h5p-core-button:link,
3
button.h5p-core-button {
4
  font-family: "Open Sans", sans-serif;
5
  font-weight: 600;
6
  font-size: 1em;
7
  line-height: 1.2;
8
  padding: 0.5em 1.25em;
9
  border-radius: 2em;
10
 
11
  background: #2579c6;
12
  color: #fff;
13
 
14
  cursor: pointer;
15
  border: none;
16
  box-shadow: none;
17
  outline: none;
18
 
19
  display: inline-block;
20
  text-align: center;
21
  text-shadow: none;
22
  vertical-align: baseline;
23
  text-decoration: none;
24
 
25
  -webkit-transition: initial;
26
  transition: initial;
27
}
28
button.h5p-core-button:focus {
29
  background: #1f67a8;
30
}
31
button.h5p-core-button:hover {
32
  background: rgba(31, 103, 168, 0.83);
33
}
34
button.h5p-core-button:active {
35
  background: #104888;
36
}
37
button.h5p-core-button:before {
38
  font-family: 'H5P';
39
  padding-right: 0.15em;
40
  font-size: 1.5em;
41
  vertical-align: middle;
42
  line-height: 0.7;
43
}
44
button.h5p-core-cancel-button:visited,
45
button.h5p-core-cancel-button:link,
46
button.h5p-core-cancel-button {
47
  border: none;
48
  background: none;
49
  color: #a00;
50
  margin-right: 1em;
51
  font-size: 1em;
52
  text-decoration: none;
53
  cursor: pointer;
54
}
55
button.h5p-core-cancel-button:hover,
56
button.h5p-core-cancel-button:focus {
57
  background: none;
58
  border: none;
59
  color: #e40000;
60
}