Skip to content

Instantly share code, notes, and snippets.

@alejandro-du
Last active February 12, 2018 22:39
Show Gist options
  • Save alejandro-du/f587e56ab072b5cf75ef10c2c83d859d to your computer and use it in GitHub Desktop.
Save alejandro-du/f587e56ab072b5cf75ef10c2c83d859d to your computer and use it in GitHub Desktop.
Lumo example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="./bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="./bower_components/vaadin-date-picker/vaadin-date-picker.html" />
<custom-style>
<style include="lumo-color lumo-typography"></style>
<style>
html {
--lumo-font-family: "Courier";
--lumo-border-radius: 20px;
--lumo-base-color: #e5f4ff;
--lumo-primary-color: #199;
}
</style>
</custom-style>
</head>
<body>
<vaadin-date-picker label="Date" value="2018-02-22">
</vaadin-date-picker>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment