-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (78 loc) · 1.86 KB
/
Copy pathindex.html
File metadata and controls
84 lines (78 loc) · 1.86 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>su-shi Demo</title>
<script src="../platform/platform.js"></script>
<link rel="import" href="su-shi.html">
<link href='http://fonts.googleapis.com/css?family=Lemon' rel='stylesheet' type='text/css'>
<style>
html {
margin-top: 10%;
text-align: center;
background: url(./geta.png);
background-size: 150px;
}
h1 {
text-align: center;
font-family: 'Lemon', serif;
font-size: 4em;
color: #030003;
}
h1 > b {
text-transform: uppercase;
}
.geta {
margin: 30px;
display: inline-block;
border-radius: 3px;
padding: 40px 20px;
box-shadow: 0 3px 4px rgba(100,100,100,0.5);
background: radial-gradient(
circle at 50% -100%,
white 10%,
#030003,
#101
);
}
.dish {
margin: 30px auto;
display: inline-block;
border-radius: 10px;
padding: 0.5em 2em;
background-color: #fff;
box-shadow: 0 1px 2px rgba(100,100,100,0.5),
inset 0 0 10px 5px #FFF,
inset 0 0 30px rgba(20,0,20,0.3);
text-align-last: left;
font-family: consolas, sans-serif;
color: #423535;
}
.hl-elm {
font-weight: bold;
color: #D88A5E;
}
.hl-attr {
font-weight: bold;
color: #8C9C49;
}
.hl-val {
color: #E06363;
}
</style>
</head>
<body unresolved>
<h1><b>Sushi</b> menu</h1>
<!-- Use element -->
<div class="geta">
<su-shi></su-shi>
<su-shi neta="ika"></su-shi>
<su-shi neta="toro"></su-shi>
<su-shi neta="gyoku"></su-shi>
<su-shi neta="saba" wasabi="false"></su-shi>
</div>
<div class="dish">
<pre><code class="html"><<span class="hl-elm">su-shi</span> <span class="hl-attr">neta</span>=<span class="hl-val">"maguro"</span> <span class="hl-attr">wasabi</span>=<span class="hl-val">"true"></span><<span class="hl-elm">/su-shi</span>></code></pre>
</div>
</body>
</html>