-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.html
More file actions
39 lines (33 loc) · 833 Bytes
/
buttons.html
File metadata and controls
39 lines (33 loc) · 833 Bytes
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
34
35
36
37
38
39
<html>
<head>
<title>Student Page</title>
<script src="bower_components/platform/platform.js"></script>
<link rel="import" href="bower_components/font-roboto/roboto.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<style>
body {
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
margin: 0;
padding: 24px;
}
h2 {
color: #5264ae;
}
paper-button {
margin: 1em;
width: 10em;
}
paper-button.colored {
background: #009933;
color: #fff;
}
</style>
</head>
<body>
<!-- page code -->
<h2>Fork a repo:</h2>
<paper-button raisedButton class="colored" label="FORK"></paper-button>
<h2>Submit Tick:</h2>
<paper-button raisedButton class="colored" label="SUBMIT"></paper-button>
</body>
<html>