-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
51 lines (51 loc) · 1.94 KB
/
main.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
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Testing breakpoint free design</title>
<link rel="stylesheet" href="fluid-type.css">
<link rel="stylesheet" href="fluid-space.css">
</head>
<body>
<p class="font7">Size 7 text. Hero title</p>
<p class="font6">Size 6 text. A headline.</p>
<p class="font5">Size 5 text. A sub headline. We'll see.</p>
<p class="font4">Size 4 text. I don't know.</p>
<p class="font3">Size 3 text. Important text. Lorem Ipsum.</p>
<p class="font2">
Size 2 text. The base which is between 1 rem and 1.5 rem.
At a width of 320, that will be 16px. We will put some text to read
here.
</p>
<p class="font1">Size 1 text. Minor things.</p>
<div class="wrapped-row">
<article class="c-card u-flow">
<img src="per_drive_f1.jpg" alt="" style="width: var(--space-s-l)"/>
<h2>Card title</h2>
<p>Card description. This is a text in a paragraph so it should be able to wrap.</p>
</article>
<article class="c-card u-flow">
<img src="per_drive_f1.jpg" alt="" style="width: var(--space-s-l)"/>
<h2>Card title</h2>
<p>Card description. This is a text in a paragraph so it should be able to wrap.</p>
</article>
<article class="c-card u-flow">
<img src="per_drive_f1.jpg" alt="" style="width: var(--space-s-l)"/>
<h2>Card title</h2>
<p>Card description. This is a text in a paragraph so it should be able to wrap.</p>
</article>
</div>
<p class="font0">Size 0 text. Not to be read, almost.</p>
<div style="background-color: aqua" class="smallBox">
<p class="font2">small box</p>
</div>
<div style="background-color: aqua" class="mediumBox">
<p class="font0">medium box</p>
</div>
<div style="background-color: aqua" class="largeBox">
<p class="font0">large box</p>
</div>
<div style="background-color: aqua" class="xlargeBox">
<p class="font0">xlarge box</p>
</div>
</body>
</html>