Compare commits
No commits in common. "e0eff29da3a44ce3bc40b68c1a9d5d307e488748" and "af16614960eef8287062c77e7805f1301cb9cde3" have entirely different histories.
e0eff29da3
...
af16614960
5 changed files with 6 additions and 57 deletions
23
about.php
23
about.php
|
@ -1,23 +0,0 @@
|
|||
<?php
|
||||
include('init.php');
|
||||
include('templates/header.php');
|
||||
|
||||
?>
|
||||
<p>
|
||||
<strong>SimpleWordsCloud</strong> est un outil permettant de créer et
|
||||
de un visualiser un nuage de mots.
|
||||
Cet outil ne demande aucune inscription et
|
||||
n'enregistre rien de plus que les mots entrés,
|
||||
il respecte donc totalement votre vie privée.<br/>
|
||||
Le code source est publié sous
|
||||
<a href="https://mit-license.org/" title="Lien vers le site de la licence MIT">licence MIT</a>
|
||||
et est disponible sur
|
||||
<a href="https://git.vulgarisons.info/raghnarok/simpleWordsCloud" title="Lien vers le dépôt">mon dépôt git</a>.
|
||||
</p>
|
||||
<p>
|
||||
L'affichage du nuage est possible grâce au travail de
|
||||
<a href="https://timdream.org/" title="Lien vers le site de Timothy Guan-tin Chien">Timothy Guan-tin Chien</a>.
|
||||
</p>
|
||||
<?php
|
||||
include('templates/footer.php');
|
||||
?>
|
|
@ -41,10 +41,6 @@ html, body {
|
|||
a {
|
||||
color: var(--font-color);
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
border-bottom: 0.08em dashed var(--font-color);
|
||||
}
|
||||
#page-wrap {
|
||||
min-height: 100%;
|
||||
margin-bottom: calc(0em - var(--footer-height));
|
||||
|
@ -61,17 +57,8 @@ footer, #page-wrap:after {
|
|||
/******************* Header *******************/
|
||||
|
||||
#navbar {
|
||||
position: relative;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
#navbar-right {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
bottom: 2em;
|
||||
}
|
||||
#navbar .title{
|
||||
font-size: 2em;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
/******************* Footer *******************/
|
||||
|
@ -86,7 +73,6 @@ footer, #page-wrap:after {
|
|||
position: absolute;
|
||||
bottom: 0.1em;
|
||||
left: 50%;
|
||||
min-width: fit-content;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
|
@ -99,7 +85,7 @@ footer, #page-wrap:after {
|
|||
/******************* Others *******************/
|
||||
|
||||
#my_canvas {
|
||||
height: 50vh;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
.cloud_words_input {
|
||||
|
@ -132,12 +118,3 @@ footer, #page-wrap:after {
|
|||
summary:active, summary:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.download_link {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
details table {
|
||||
margin-top: 0.5em;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
|
|
@ -51,9 +51,7 @@ if (isset($id)) {
|
|||
</thead>
|
||||
</table>
|
||||
</details>
|
||||
<div class="download_link">
|
||||
<a href="download.php?id=<?php echo $id ?>"><?php echo L::wordsList_download ?></a>
|
||||
</div>
|
||||
<a href="download.php?id=<?php echo $id ?>"><?php echo L::wordsList_download ?></a>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer_text">
|
||||
SimpleWordsCloud — <a href="https://trolliet.info">Gregory Trolliet</a>
|
||||
</div>
|
||||
SimpleWordsCloud — Gregory Trolliet
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
if (!empty($jsWordcloud)) {
|
||||
|
|
|
@ -14,9 +14,6 @@
|
|||
<body>
|
||||
<div id="page-wrap">
|
||||
<div id="navbar">
|
||||
<a href="index.php" class="title"><?php echo L::title ?></a>
|
||||
<span id="navbar-right">
|
||||
<a href="about.php">À propos</a>
|
||||
</span>
|
||||
<a href="index.php"><?php echo L::title ?></a>
|
||||
</div>
|
||||
<div class="container">
|
||||
|
|
Loading…
Reference in a new issue