Posts by Guilherme Laureano • 501 points
5 posts
-
1
votes1
answer50
viewsQ: Is it possible to take a data from a JSON using a predefined variable?
I have a link with an attribute that has the information of which JSON data should be obtained. <a href="#" data-json-code="code_118"></a> And I have the code responsible for its…
-
1
votes1
answer70
viewsQ: Mixin in LESS for the CSS "Calc()" function, how to use two variables?
I have this mixin that works perfectly: .calcW(@valor2: 100px) { width: -o-calc(~"100% - "@valor2); width: -webkit-calc(~"100% - "@valor2); width: -moz-calc(~"100% - "@valor2); width: calc(~"100% -…
lessasked Guilherme Laureano 501 -
28
votes4
answers62720
viewsQ: How to style a "file" input?
I have this structure: <section id="cadastro" class="cadastroVersao pg-i"> <div class="titulo"> <h1><i class="icon-clientes"></i>Cadastro de versão</h1> <a…
-
5
votes2
answers9548
viewsQ: Curves / Waves in CSS
Is it possible to do, in pure css or with some other technique these wavy effects (image attached)? I don’t want to use images to make them.…
-
4
votes1
answer202
viewsQ: Script to mute my site (game)
I have a project in localhost (little game in HTML 5, JS and CSS), at the bottom of the game plays a song, I can’t make the button to turn off the sound work, anyone knows any article teaching or…