Skip to content

Instantly share code, notes, and snippets.

View geraldogonzalez's full-sized avatar

Geraldo Gonzalez geraldogonzalez

View GitHub Profile
.rounded-corners-gradient-borders {
width: 300px;
height: 80px;
border: double 4px transparent;
border-radius: 80px;
background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff);
background-origin: border-box;
background-clip: content-box, border-box;
}
@geraldogonzalez
geraldogonzalez / index.html
Last active February 19, 2019 00:17
HTML: Código Básico
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Lo que sea</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
<script src="main.js"></script>
</head>