mirror of
https://github.com/picocss/pico.git
synced 2025-04-21 09:06:14 -04:00
54 lines
1.7 KiB
HTML
54 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<title>Preview • Pico CSS</title>
|
|
<meta name="description" content="A pure HTML example, without dependencies." />
|
|
<!-- Backwards compatability -->
|
|
<link rel="icon" sizes="16x16 24x24 32x32 64x64" href="favicon.ico">
|
|
<!-- All other browsers -->
|
|
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
|
|
<!-- Google Search and Android Chrome -->
|
|
<link rel="icon" type="image/png" sizes="48x48" href="favicon-48x48.png">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="favicon-192x192.png">
|
|
<!-- iPhone -->
|
|
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="favicon-180x180.png">
|
|
<!-- iPad Retina -->
|
|
<link rel="apple-touch-icon" type="image/png" sizes="167x167" href="favicon-167x167.png">
|
|
<!-- Other iPads -->
|
|
<link rel="apple-touch-icon" type="image/png" sizes="152x152" href="favicon-152x152.png">
|
|
<!-- Web application manifest -->
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
<!-- Pico.css -->
|
|
<link rel="stylesheet" href="pico.min.css" />
|
|
<link rel="stylesheet" href="pico.colors.min.css" />
|
|
|
|
<!--
|
|
Yohn's Simple CSS Class helpers
|
|
I might add these to the main PicoCSS later
|
|
-->
|
|
<link rel="stylesheet" href="basics.css" />
|
|
<style>
|
|
:root {
|
|
--pico-logo-wordmark: #fff;
|
|
--pico-logo-small-sparkles: #ff9500;
|
|
--pico-logo-big-sparkle: #ffbf00;
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div class="col-12 col-md-3 col-lg-2">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|