-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfecontent.html
61 lines (54 loc) · 1.78 KB
/
fecontent.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/papercss@1.9.2/dist/paper.min.css">
<title>PaperCSS Full Example</title>
</head>
<body>
<div class="paper container">
<h1 class="no-margin">PaperCSS Example</h1>
<p>This example showcases a variety of PaperCSS components.</p>
<!-- Buttons -->
<h2>Buttons</h2>
<button class="btn-small">Small Button</button>
<button class="btn-large secondary">Large Button</button>
<!-- Form -->
<h2>Form</h2>
<form>
<fieldset>
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter your name">
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter your email">
<input class="btn-block" type="submit" value="Submit">
</fieldset>
</form>
<!-- Card -->
<h2>Card</h2>
<div class="row flex-spaces child-borders">
<div class="sm-3 col">
<div class="card">
<article class="card-body">
<h4>Card Title</h4>
<p>This is a card. It contains content like text, images, and buttons.</p>
<button>Read More</button>
</article>
</div>
</div>
</div>
<!-- Typography -->
<h2>Typography</h2>
<p class="text-large">This is large text.</p>
<p class="text-small">This is small text.</p>
<!-- Grid System -->
<h2>Grid System</h2>
<div class="row">
<div class="col sm-4">.sm-4</div>
<div class="col sm-4">.sm-4</div>
<div class="col sm-4">.sm-4</div>
</div>
</div>
</body>
</html>