-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundations.html
More file actions
119 lines (113 loc) · 5.16 KB
/
foundations.html
File metadata and controls
119 lines (113 loc) · 5.16 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foundations | The Forge - Design System</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Lato:900' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="global-navbar">
<div id="global-navbar-icons">
<a href="index.html"><img src="logo.png" alt="" id="global-navbar-img"></a>
</div>
<div id="global-navbar-links-section">
<a href="index.html" class="global-navbar-links">Home</a>
<a href="colors.html" class="global-navbar-links">Colors</a>
<a href="foundations.html" class="global-navbar-links">Foundations</a>
<a href="components.html" class="global-navbar-links">Components</a>
<a href="utilities.html" class="global-navbar-links">Utilities</a>
</div>
</nav>
</header>
<main class="main-content">
<aside class="sidebar">
<h4>Foundations</h4>
<nav class="sidebar-nav">
<a href="#typography">Typography</a>
<a href="#spacing">Spacing</a>
</nav>
</aside>
<section class="page-content">
<h1>Foundations</h1>
<p class="page-intro">The fundamental rules for text and space that create a consistent visual rhythm across the entire site.</p>
<section id="typography" class="content-section-box">
<h2>Typography</h2>
<p>
All text uses the 'Ubuntu' font for body content and 'Lato' for headings to ensure readability and a clean, modern feel.
</p>
<div class="type-demo-container">
<h1>Heading 1 (Lato)</h1>
<h2>Heading 2 (Lato)</h2>
<h3>Heading 3 (Lato)</h3>
<p>
This is a standard body paragraph. It uses the 'Ubuntu' font,
which is selected for its excellent readability at all sizes.
This paragraph also includes <a href="#">a text link</a>.
</p>
</div>
</section>
<section id="spacing" class="content-section-box">
<h2>Spacing</h2>
<p>
We use an 8px base unit. All margins, paddings, and layout gaps should be
multiples of 8px (e.g., 8px, 16px, 24px, 32px) to create a
consistent spatial rhythm.
</p>
<div class="spacing-demo-container">
<div class="spacing-swatch">
<div class="spacing-box" style="width: 8px; height: 8px;"></div>
<div class="spacing-info">
<strong>8px</strong>
<span>(1x unit)</span>
</div>
</div>
<div class="spacing-swatch">
<div class="spacing-box" style="width: 16px; height: 16px;"></div>
<div class="spacing-info">
<strong>16px</strong>
<span>(2x unit)</span>
</div>
</div>
<div class="spacing-swatch">
<div class="spacing-box" style="width: 24px; height: 24px;"></div>
<div class="spacing-info">
<strong>24px</strong>
<span>(3x unit)</span>
</div>
</div>
<div class="spacing-swatch">
<div class="spacing-box" style="width: 32px; height: 32px;"></div>
<div class="spacing-info">
<strong>32px</strong>
<span>(4x unit)</span>
</div>
</div>
</div>
</section>
</section>
</main>
<footer>
<div class="quick-links-container">
<h3>Quick Links</h3>
<div class="quick-links">
<a href="index.html">Home</a>
<a href="colors.html">Colors</a>
<a href="foundations.html">Foundations</a>
<a href="components.html">Components</a>
<a href="utilities.html">Utilities</a>
<a href="#" class="back-to-top">Back to Top ↑</a>
</div>
</div>
<div class="trademark">
<p>© 2025 The Forge. A project by skullxcode.</p>
</div>
</footer>
</body>
</html>