Skip to content

Commit 7c44fdf

Browse files
committed
Minimial test page
1 parent fecacbe commit 7c44fdf

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

src/test/html/test.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!doctype html>
2+
<html lang="en" style="width: 100%">
3+
4+
<head>
5+
<title>Button Component Tests</title>
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<meta name="description" content="Button Component Tests">
9+
<meta name="author" content="Ole Ersoy">
10+
<!-- Font Awesome -->
11+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
12+
<link rel="stylesheet" type="text/css" href="../../../target/test/css/index.css">
13+
</head>
14+
15+
<body class="Site u-width-100">
16+
17+
<main class="u-width-100
18+
u-text-color-silver-grey
19+
u-flex
20+
u-flex-column
21+
u-flex-align-items-center
22+
u-margin-top-10x">
23+
<div class="Test u-width-100">
24+
25+
<span class="Test_counter"></span>
26+
<span class="Test_component">Button</span>
27+
28+
<div class="Test_container u-width-100 u-md-flex-justify-around u-md-flex-row u-md-flex-align-items-start">
29+
<div class="Test_input">
30+
<div class="Test_when"></div>
31+
<div class="Test_description">A button's border and background color are not specified.</div>
32+
<pre class="Test_markup">
33+
<code class="html">
34+
<a class="Button
35+
u-letter-spacing-1x
36+
u-on-hover-background-color-555
37+
u-text-color-white
38+
u-font-open-sans
39+
u-font-weight-300
40+
u-font-size-500">booyakasha
41+
</a>
42+
</code>
43+
</pre>
44+
</div>
45+
<div class="Test_output">
46+
<div class="Test_then"></div>
47+
<div class="Test_description u-margin-bottom-1x">Both the border and the background is transparent.</div>
48+
</div>
49+
</div>
50+
51+
<!-- End of Test div-->
52+
</div>
53+
54+
</main>
55+
</body>
56+
</html>

0 commit comments

Comments
 (0)