Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/co-design: create a branch for design, in general, and specifically co-design #13

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 144 additions & 0 deletions design/co-design/ConceptCentredPalette.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
<!DOCTYPE html>
<html>
<head>
<title>Bliss Platte - Related Surround</title>
<style>
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
background-color: #2196F3;
padding: 10px;
align-items: center;
}
.grid-item {
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 20px;
font-size: 1em;
text-align: center;
font-weight: bold;
}
.half-size {
/* All original images are 156 pixels in height, see: https://www.blissymbolics.net/ */
height: 78px;
width: auto;
}
.quarter-size {
height: 39px;
width: auto;
}
.eighth-size {
height: 20px;
width: auto;
}
.img-align-center {
vertical-align: middle;
}
</style>
</head>
<h1>Bliss Palettes - Related Concepts Surrounding Main Concept</h1>
<body>
<p>
The purpose of the following two Bliss palettes is to show how a Bliss user
might arrange palettes for their use where a central concept occupies the
centre of the display and related ideas surround it. The idea is the
central concept provides close access to nearby concepts.</p>
<p>
Note that the central concept is in the eye of the
beholder. It is a central concept for a specific Bliss user as they
conceptulize things, and not based on some text-book arrangment of concepts.
It may not make any sense to anyone but the Bliss user who created the
palette.
</p>
<ol>
<li>
The current depth is one, meaning the central concept is surrounded by
only one set of related concepts. There could be two sets, three sets,
or more, if the user finds that arrangement useful. The second set
would surround the first, and so on.
</li>
<li>
The current layout is a grid, but need not be. It could be circular
or perhaps even a set of concentric rings.
</li>
</ol>
<h2>My Family <img class="half-size img-align-center" src="https://www.blissymbolics.net/refnumber/20572"></h2>
<div id="myFamily" class="grid-container">
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/12596"/><br>
Aunt
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/15662"/><br>
Mother
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/25280"/><br>
Cousin
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/16994"/><br>
Sister
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/14916"/><br>
Me
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/12909"/><br>
Brother
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/25279"/><br>
Cousin
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/14157"/><br>
Father
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/17967"/><br>
Uncle
</div>
</div>
<h2>Person cluster <img class="half-size img-align-center" src="https://www.blissymbolics.net/refnumber/16161"></h2>
<div id="persons" class="grid-container">
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/13426"/><br>
Couple
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/18269"/><br>
Woman
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/14706"/><br>
Assistant
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/14439"/><br>
Girl
</div>
<div class="grid-item">
<img class="half-size noun" src="https://www.blissymbolics.net/refnumber/16161"/><br>
Person
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/12888"/><br>
Boy
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/14646"/><br>
Crowd
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/15416"/><br>
Man
</div>
<div class="grid-item">
<img class="half-size" src="https://www.blissymbolics.net/refnumber/16217"/><br>
Police
</div>
</div>
</body>
</html>