This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var re = new RegExp("e","g"); | |
var str = ("cadena donde reemplazar").replace(re,"o"); | |
//cadona dondo roomplazar | |
// Alternativamente | |
var cadena = "cadena con texto" | |
var new_string = "texto" | |
var str = cadena.substring(0,cadena.lastIndexOf(new_string))+"<span class='green'>"+new_string+"</span>"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.border.transparent{ | |
border: solid 5px transparent; | |
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; | |
border-radius: 10px; | |
} | |
.border{ | |
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img.autosize | |
{ | |
width: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img.centered { | |
position: absolute; | |
margin: auto; | |
top: 0px; | |
left: 0px; | |
bottom: 0; | |
right: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#interactive label#text { | |
width: 210px; | |
display: table-cell; | |
text-align: center; | |
vertical-align: middle; | |
cursor: pointer; | |
} | |
.contenedor{ | |
display: table; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.border{ | |
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; | |
border-radius: 10px; | |
border:solid 5px #EFB20F; | |
} | |
.border.wrong{ | |
border: solid 5px #E11C24 !important; | |
} |
NewerOlder