-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1018 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Test App</title>
<link rel="stylesheet" type="text/css" href="css/test-app.css"/>
<script src="../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../px-theme/px-theme.html"/>
<link rel="import" href="../px-modal/px-modal.html"/>
<link rel="import" href="../px-card/px-card.html"/>
<style>
.btn--tertiary {
border-color: red;
color: red;
}
.btn--primary {
background-color: yellow;
border-color: black;
color: black;
}
</style>
</head>
<body>
<px-card header-text="Test Card" icon="fa-suitcase">
<px-modal modal-heading="Test" btn-modal-positive="OK" btn-modal-negative="Cancel">
<button class="btn btn--primary modal-trigger">Open Modal</button>
<p>Testing of px-modal</p>
</px-modal>
<br /><br />
<button class="btn btn--tertiary">Yay!</button>
</px-card>
</body>