Merge branch 'master' of https://git.macaw.me/Tolstoevsky/switching
102
css/base.css
|
@ -1,102 +0,0 @@
|
|||
@font-face {
|
||||
font-family: 'comfortaa';
|
||||
src:url('../fonts/comfortaa.ttf');
|
||||
}
|
||||
|
||||
.textblock {
|
||||
background-color:#1f2833;
|
||||
border-radius:2px;
|
||||
border: 1px solid #667;
|
||||
display:inline-block;
|
||||
width: auto;
|
||||
color: #c5c6c7;
|
||||
padding: 1% 1% 1% 1%;
|
||||
margin: 1% 1% 1% 1%;
|
||||
|
||||
}
|
||||
|
||||
.imgblock {
|
||||
background-color:#1e2832;
|
||||
border-radius:2px;
|
||||
border:1px solid #667;
|
||||
display:inline-block;
|
||||
width: 96%;
|
||||
height: 99%;
|
||||
color: #c5c6c7;
|
||||
padding: 1% 1% 1% 1%;
|
||||
margin: 15% 1% 1% 1%;
|
||||
}
|
||||
|
||||
.imgblock img {
|
||||
margin: 1% 1% 1% 1%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
body {
|
||||
font: 100%/150% comfortaa;
|
||||
width: 60%;
|
||||
max-width: 80%;
|
||||
margin: 0 auto;
|
||||
background-color:#0b0c10;
|
||||
}
|
||||
p {
|
||||
margin: 0 0 20px;
|
||||
}
|
||||
a {
|
||||
color: #45a29e;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #66fcf1;
|
||||
}
|
||||
|
||||
|
||||
h1, h2, h3 {
|
||||
color: #eee;
|
||||
margin: 20px 0 10px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.7em;
|
||||
color: #bbb;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.4em;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: #999;
|
||||
margin: 20px 0 10px;
|
||||
font-family: "comfortaa";
|
||||
}
|
||||
|
||||
|
||||
.zoom {
|
||||
transition: transform .2s;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.zoom:hover {
|
||||
-ms-transform: scale(2); /* IE 9 */
|
||||
-webkit-transform: scale(2); /* Safari 3-8 */
|
||||
transform: scale(2);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 900px) {
|
||||
body {
|
||||
max-width: 90%;
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 716px) {
|
||||
body {
|
||||
max-width: 98%;
|
||||
width: 96%;
|
||||
}
|
||||
}
|
||||
|
||||
|
47
css/btn.css
|
@ -1,47 +0,0 @@
|
|||
.Button {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:flex;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:1% 2%;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.Button:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.Button:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
.Button2 {
|
||||
box-shadow:inset 0px -3px 7px 0px #29bbff;
|
||||
background:linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);
|
||||
background-color:#2dabf9;
|
||||
border-radius:3px;
|
||||
border:1px solid #0b0e07;
|
||||
display:flex;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-size:15px;
|
||||
padding:1% 2%;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #263666;
|
||||
}
|
||||
.Button2:hover {
|
||||
background:linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);
|
||||
background-color:#0688fa;
|
||||
}
|
||||
.Button2:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
174
css/menu.css
|
@ -1,174 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
/* custom scrollbar */
|
||||
::-webkit-scrollbar {
|
||||
width: .95em;
|
||||
}
|
||||
/* dummy content */
|
||||
.content {
|
||||
float: left;
|
||||
margin: .75em 0 0 0;
|
||||
transition: margin .3s ease-in-out;
|
||||
}
|
||||
.content > p {
|
||||
margin: .25em 0 .75em 0;
|
||||
}
|
||||
|
||||
/* Advanced Checkbox Hack */
|
||||
body {
|
||||
-webkit-animation: bugfix infinite 1s;
|
||||
}
|
||||
|
||||
@-webkit-keyframes bugfix {
|
||||
from {
|
||||
padding: 0;
|
||||
}
|
||||
to {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
input[type=checkbox] {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
label {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
display: none;
|
||||
width: 2em;
|
||||
height: .5em;
|
||||
padding: 20px;
|
||||
font-size: 1.1em;
|
||||
color: #fff;
|
||||
transition: color .3s ease-in-out;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
margin: 0;
|
||||
# background-color:blue;
|
||||
}
|
||||
|
||||
/* big screens */
|
||||
nav[role="off-canvas"] {
|
||||
position: relative;
|
||||
width: 50em;
|
||||
margin: 0 auto;
|
||||
transition-duration: .3s, .5s;
|
||||
transition-timing-function: ease-in-out;
|
||||
transition-property: left, opacity, box-shadow;
|
||||
}
|
||||
nav[role="off-canvas"] a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
transition: color .3s ease-in-out;
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
nav[role="off-canvas"] ul {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
nav[role="off-canvas"] ul > li {
|
||||
float: left;
|
||||
padding: .55em .55em;
|
||||
width: 8em;
|
||||
margin: .5em;
|
||||
opacity: .8;
|
||||
text-transform: uppercase;
|
||||
display: table;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
transition-duration: .3s;
|
||||
transition-timing-function: ease-in-out;
|
||||
transition-property: box-shadow, color, opacity, padding-left;
|
||||
cursor: pointer;
|
||||
}
|
||||
nav[role="off-canvas"] ul > li:hover {
|
||||
color: #fff;
|
||||
opacity: 1;
|
||||
box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.95);
|
||||
}
|
||||
nav[role="off-canvas"] ul > li
|
||||
.active
|
||||
{
|
||||
color: #fff;
|
||||
opacity: 1;
|
||||
box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.95);
|
||||
}
|
||||
|
||||
/* small screens */
|
||||
@media screen and (max-width: 44em) {
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: 2.5em .5em 0 .5em;
|
||||
}
|
||||
|
||||
nav[role="off-canvas"] {
|
||||
position: absolute;
|
||||
top: 3em;
|
||||
left: -20em;
|
||||
width: 20em;
|
||||
opacity: 0;
|
||||
}
|
||||
nav[role="off-canvas"] ul > li {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
background: black;
|
||||
}
|
||||
nav[role="off-canvas"] ul > li:hover {
|
||||
box-shadow: inset 0 0 0 0.15em rgba(255, 255, 255, 0.45);
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
label:after {
|
||||
position: absolute;
|
||||
right: .25em;
|
||||
top: 0;
|
||||
content: "\2261";
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
label:hover,
|
||||
input:checked ~ label {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
input:checked ~ nav[role="off-canvas"] {
|
||||
opacity: 1;
|
||||
left: 0;
|
||||
box-shadow: -30em 0 0 30em rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
input:checked ~ nav[role="off-canvas"] ul > li {
|
||||
padding: .55em .55em .55em 1.5em;
|
||||
}
|
||||
input:checked ~ nav[role="off-canvas"] ul > li:hover {
|
||||
padding-left: 3.5em;
|
||||
}
|
||||
input:checked ~ nav[role="off-canvas"] ul > li:after {
|
||||
position: absolute;
|
||||
right: .25em;
|
||||
content: "\203A";
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
input:checked ~ .content {
|
||||
margin-left: 20.5em;
|
||||
margin-right: -20.5em;
|
||||
}
|
||||
}
|
||||
|
1
css/picnic.min.css
vendored
Normal file
1
css/picnic.min.css.bak
Normal file
153
extra.html
|
@ -6,30 +6,103 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор! - Документы и агитматериалы.</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/btn.css">
|
||||
</head>
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html">Главная</a></li>
|
||||
<li><a href="mail.html">Почта</a></li>
|
||||
<li><a href="im.html">Мессенджеры</a></li>
|
||||
<li><a href="social.html">Соцсети</a></li>
|
||||
<li><a href="search.html">Поисковики</a></li>
|
||||
<li><a href="extra.html" class="active">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="social.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Устав сообщества</h2>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h2>Устав сообщества</h2></header>
|
||||
<p>
|
||||
<img src="images/book.png" align="right" style="margin: 0px 0px 0px 10px;" alt="устав">
|
||||
|
||||
|
@ -54,10 +127,9 @@
|
|||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="textblock">
|
||||
<h2>База знаний</h2>
|
||||
</article>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h2>База знаний</h2></article>
|
||||
<p>
|
||||
<img src="images/know.png" align="right" style="margin: 0px 0px 0px 10px;" alt="база знаний">
|
||||
Сообщество не было бы сообществом, если бы не свободный обмен знаниями.
|
||||
|
@ -86,20 +158,16 @@
|
|||
|
||||
|
||||
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="textblock" align="center">
|
||||
|
||||
<h2>Агитационные материалы</h2>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h2>Агитационные материалы</h2></header>
|
||||
<p>
|
||||
|
||||
<div class="imgblock">
|
||||
<a href="images/thumb1.png" >
|
||||
<img src="images/thumb1.png" width=15% max-width=100% style="float:left;" class="zoom"></a>
|
||||
<a href="images/thumb2.png" >
|
||||
<img src="images/thumb2.png" width=15% max-width=100% style="float:left; margin:1%;" class="zoom"></a>
|
||||
<a href="images/transport.png" >
|
||||
<img src="images/transport.png" width=15% max-width=100% style="float:left; margin:1%;" class="zoom" ></a>
|
||||
<div>
|
||||
<img src="images/thumb1.png" width=15% max-width=100% style="float:left;">
|
||||
<img src="images/thumb2.png" width=15% max-width=100% style="float:left; margin:1%;">
|
||||
<img src="images/transport.png" width=15% max-width=100% style="float:left; margin:1%;">
|
||||
Вы можете помочь распространению информации о свободных альтернативах централизованным сервисам,
|
||||
дав ссылку на этот сайт, либо распечатав и распространив листовки
|
||||
(не исключаем, что одна из них и привела вас сюда). Вливайтесь в ряды просветителей,
|
||||
|
@ -107,13 +175,20 @@
|
|||
</p>
|
||||
<p>
|
||||
Приветствуется распространение информации в традиционных сетях, группах, раздача листовок на митингах.
|
||||
<a class="Button" href="files/agit.zip">Скачать архив материалов</a>
|
||||
<a href="files/agit.zip">Скачать архив материалов</a>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
BIN
favicon.png
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 1.2 KiB |
272
im.html
|
@ -5,45 +5,129 @@
|
|||
<link rel="icon"
|
||||
type="image/png"
|
||||
href="favicon.png" />
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор! — Мессенджеры</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/btn.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html">Главная</a></li>
|
||||
<li><a href="mail.html">Почта</a></li>
|
||||
<li><a href="im.html" class="active">Мессенджеры</a></li>
|
||||
<li><a href="social.html">Соцсети</a></li>
|
||||
<li><a href="search.html">Поисковики</a></li>
|
||||
<li><a href="extra.html">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="social.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Децентрализованные мессенджеры</h2>
|
||||
<p>Способы быстро списаться и созвониться с нужным человеком</p>
|
||||
<div class="imgblock">
|
||||
<a href="images/movim.png" >
|
||||
<picture>
|
||||
<source srcset="images/conversations.png" media="(max-width: 700px)">
|
||||
<source srcset="images/movim.png">
|
||||
<img src="images/movim.png" width=45% max-width=100% alt="Jabber" class="zoom" >
|
||||
</picture></a>
|
||||
|
||||
<p>
|
||||
<h3>XMPP (он же Jabber) - на замену WhatsApp и Telegram</h3>
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
|
||||
<article class="four-fifth-1000">
|
||||
|
||||
<header><h3>Децентрализованные мессенджеры<h3></header>
|
||||
<p>Способы быстро списаться и созвониться с нужным человеком. Общение через сеть должно быть безопасным, приватным и неподцензурным. И вот сервисы, которые вам помогут в этом:
|
||||
</p>
|
||||
</article>
|
||||
|
||||
<article class="card four-fifth-1000">
|
||||
<header><h3>XMPP (он же Jabber) — на замену WhatsApp и Telegram</h3></header>
|
||||
<center><label for="modal_jab"><img src="images/movim.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_jab" type="checkbox" />
|
||||
<label for="modal_jab" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Jabber</h3>
|
||||
<label for="modal_jab" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/movim.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
<span>
|
||||
Широко используемый свободный и открытый стандарт интернет-сообщений.
|
||||
Весьма прост в использовании — устанавливаем приложение, регистрируем аккаунт, общаемся.
|
||||
|
@ -53,36 +137,46 @@
|
|||
все пользователи доступны для вас.
|
||||
</p>
|
||||
</p>
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
|
||||
<a class="Button" href="https://xmpp.netwhood.online">Network Neighborhood</a>
|
||||
<a class="Button" href="https://xmpp.jp">xmpp.jp</a>
|
||||
<a class="Button" href="https://blabber.im">blabber.im</a>
|
||||
<a class="Button" href="https://jabber.ru">jabber.ru</a>
|
||||
</div>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-1' type='radio' name='tabgroupB' checked />
|
||||
<label class="pseudo button toggle" for="tab-1">Где зарегистрироваться</label>
|
||||
<input id='tab-2' type='radio' name='tabgroupB'>
|
||||
<label class="pseudo button toggle" for="tab-2">Приложения</label>
|
||||
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://xmpp.netwhood.online">Network Neighborhood</a></button>
|
||||
<button class="warning"><a href="https://xmpp.jp">XMPP.jp</a></button>
|
||||
<button class="warning"><a href="https://blabber.im">Blabber</a></button>
|
||||
<button class="warning"><a href="https://jabber.ru">Jabber.ru</a></button>
|
||||
|
||||
</center></div>
|
||||
<div><center><button class="pseudo"><a href="https://f-droid.org/packages/eu.sum7.conversations/"><img src="images/fdroid.png">Conv6ations</a></button><br>
|
||||
<button class="pseudo"><a href="https://play.google.com/store/apps/details?id=de.pixart.messenger"><img src="images/google.png">Pix-Art Messenger</a></button>
|
||||
<button class="pseudo"><a href="https://apps.apple.com/app/tigase-messenger/id1153516838"><img src="images/apple.png">Siskin IM</a></button>
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
|
||||
<article class="card four-fifth-1000">
|
||||
<header><h3>Jitsi Meet и Jami — на замену Skype</h3></header>
|
||||
<center><label for="modal_meet"><img src="images/jitsi.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_meet" type="checkbox" />
|
||||
<label for="modal_meet" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Jitsi Meet</h3>
|
||||
<label for="modal_meet" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/jitsi.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="textblock">
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://f-droid.org/packages/eu.sum7.conversations/">
|
||||
<IMG src="images/fdroid.png" width="24" height="24">Conv6ations (Android / F-Droid)</a>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=de.pixart.messenger">
|
||||
<IMG src="images/google.png" width="24" height="24">Pix-Art Messenger (Google Play)</a>
|
||||
<a class="Button2" href="https://apps.apple.com/app/tigase-messenger/id1153516838">
|
||||
<IMG src="images/apple.png" width="24" height="24">Siskin IM (iOS)</a>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/jitsi.png" >
|
||||
<picture>
|
||||
<source srcset="images/jitsi2.png" media="(max-width: 700px)">
|
||||
<source srcset="images/jitsi.png">
|
||||
<img src="images/jitsi.png" width=45% max-width=100% alt="Jitsi" class="zoom"></a>
|
||||
</picture>
|
||||
<h3>Jitsi Meet и Jami - на замену Skype</h3>
|
||||
<span>
|
||||
Свободные открытые приложения для чатов и видеозвонков, разрабатываемые командами добровольцев.
|
||||
|
||||
|
@ -94,35 +188,45 @@
|
|||
В Jami дела обстоят схожим образом — каждому пользователю выдаётся уникальный код,
|
||||
которым можно поделиться с другими участниками (аналог номера аськи/телефона...)
|
||||
</p>
|
||||
<div class="textblock" >
|
||||
<h4>Приложения</h4>
|
||||
<a class="Button2" href="https://jami.net/download-jami-linux/"><IMG src="images/linux.png" width="24" height="24">Jami (Linux)</a>
|
||||
<a class="Button2" href="https://jami.net/download-jami-windows/"><IMG src="images/windows.png" width="24" height="24">Jami (Windows)</a>
|
||||
<a class="Button2" href="https://jami.net/download-jami-macos/"><IMG src="images/apple.png" width="24" height="24">Jami (MacOS)</a>
|
||||
</div>
|
||||
<div class="textblock">
|
||||
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-11' type='radio' name='tabgroupC' checked />
|
||||
<label class="pseudo button toggle" for="tab-11">Приложения</label>
|
||||
<input id='tab-21' type='radio' name='tabgroupC'>
|
||||
<label class="pseudo button toggle" for="tab-21">Мобильные приложения</label>
|
||||
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://f-droid.org/packages/org.jitsi.meet"><img src="images/fdroid.png" width="24" height="24"> Jitsi (Android / F-Droid)</a>
|
||||
<a class="Button2" href="https://f-droid.org/packages/cx.ring"><IMG src="images/fdroid.png" width="24" height="24">Jami (Android / F-Droid)</a>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=cx.ring"><IMG src="images/google.png" width="24" height="24">Jami (Google play)</a>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=org.jitsi.meet"><img src="images/google.png" width="24" height="24"> Jitsi (Google Play)</a>
|
||||
<a class="Button2" href="https://apps.apple.com/app/jitsi-meet/id1165103905"><IMG src="images/apple.png" width="24" height="24">Jitsi (iOS)</a>
|
||||
<a class="Button2" href="https://apps.apple.com/app/ring-a-gnu-package/id1306951055"><IMG src="images/apple.png" width="24" height="24">Jami (iOS)</a>
|
||||
</div>
|
||||
<div class="textblock">
|
||||
<h4>Web</h4>
|
||||
<a class="Button" href="https://meet.jit.si/">meet.jit.si</a>
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://jami.net/download-jami-linux/"><img src="images/linux.png">Jami (Linux)</a></button>
|
||||
<button class="warning"><a href="https://jami.net/download-jami-windows/"><img src="images/windows.png">Jami (Windows)</a></button>
|
||||
<button class="warning"><a href="https://jami.net/download-jami-macos/"><img src="images/apple.png">Jami (MacOS)</a></button>
|
||||
<button class="warning"><a href="https://meet.jit.si/">Jitsi (Web)</a></button>
|
||||
</center></div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<center><button class="pseudo"><a href="https://f-droid.org/packages/org.jitsi.meet"><img src="images/fdroid.png">Jitsi (F-Droid)</a></button>
|
||||
<button class="pseudo"><a href="https://f-droid.org/packages/cx.ring"><img src="images/fdroid.png">Jami (F-Droid)</a></button>
|
||||
|
||||
<button class="pseudo"><a href="https://play.google.com/store/apps/details?id=cx.ring"><img src="images/google.png">Jami (G-Play)</a></button>
|
||||
|
||||
<button class="pseudo"><a href="https://play.google.com/store/apps/details?id=cx.ring"><img src="images/google.png">Jitsi (G-Play)</a></button>
|
||||
<button class="pseudo"><a href="https://apps.apple.com/app/jitsi-meet/id1165103905"><img src="images/apple.png">Jitsi (iOS)</a></button>
|
||||
|
||||
</div>
|
||||
<hr>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"</a>
|
||||
<button class="pseudo"><a href="https://apps.apple.com/app/ring-a-gnu-package/id1306951055"><img src="images/apple.png">Jami (iOS)</a></button>
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
BIN
images/apple.png
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.3 KiB |
BIN
images/fdroid.png
Executable file → Normal file
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 2.8 KiB |
BIN
images/google.png
Executable file → Normal file
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 2.5 KiB |
BIN
images/linux.png
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 2.9 KiB |
BIN
images/logo-big.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
images/logo.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 2.7 KiB |
252
index.html
|
@ -9,98 +9,220 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор!</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/popup.css">
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>
|
||||
aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html" class="active">Главная</a></li>
|
||||
<li><a href="mail.html">Почта</a></li>
|
||||
<li><a href="im.html">Мессенджеры</a></li>
|
||||
<li><a href="social.html">Соцсети</a></li>
|
||||
<li><a href="search.html">Поисковики</a></li>
|
||||
<li><a href="extra.html">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="textblock">
|
||||
<h2>Где я? О чём речь?</h2>
|
||||
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="social.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Где я? О чём речь?</header>
|
||||
<img src="images/fedi-small.png" align="right">
|
||||
<p>
|
||||
<img src="images/fedi-small.png" align="right" style="margin: 0px 0px 0px 10px;">
|
||||
Вы на странице русского ответвления Fediverse — глобальной сети взаимосвязанных соцсетей. Мы предлагаем свободные
|
||||
альтернативы популярным сервисам, сделанные людьми и для людей, а не корпорациями с целью извлечения прибыли. (Подробности -
|
||||
<a href="info.html">здесь</a>).
|
||||
<br>
|
||||
По сути, это — <i>Сеть, как она была задумана.</i><br>
|
||||
Огромное количество равноправных серверов, прозрачно взаимодействующих между собой. Пользователи и администраторы взаимодействуют
|
||||
альтернативы популярным сервисам, сделанные людьми и для людей, а не корпорациями с целью извлечения прибыли. (Подробности - <a href="info.html">здесь</a>).
|
||||
По сути, это — <i>Сеть, как она была задумана.</i> Огромное количество равноправных серверов, прозрачно взаимодействующих между собой. Пользователи и администраторы взаимодействуют
|
||||
на равных и обладают равными правами.
|
||||
</div>
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Зачем это мне?</h2>
|
||||
</p>
|
||||
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Зачем это мне?</header>
|
||||
<p>
|
||||
<img src="images/q.png" align="right" style="margin: 0px 0px 0px 10px;">
|
||||
<img src="images/q.png" align="right">
|
||||
<i>Неподцензурность пользователя, никакой рекламы и слежки.</i><br>
|
||||
Представьте, что у вас возник конфликт с администрацией вашей любимой сети, ваши сообщения удаляют, аккаунт блокируют.
|
||||
И заново зайти в привычный уже Вконтакте/Facebook — в лучшем случае через долгое унижение в чате техподдержки, фотографии
|
||||
паспорта и прочую дурь. Хотелось бы вам в этом случае просто по щелчку мышки зайти в "другой" ВК/FB и продолжить общение
|
||||
с теми же друзьями, обсуждать те же темы, но уже в недосягаемости от обозлённой администрации? У нас так можно. И даже больше
|
||||
— никто не мешает самому стать полновластным админом (при наличии минимальной технической подготовки).
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Чем вы лучше?</h2>
|
||||
<article class="card four-fifth-1000">
|
||||
|
||||
<header>Чем вы лучше?</header>
|
||||
<p>
|
||||
<img src="images/globe.png" align="right" style="margin: 0px 0px 0px 10px;">
|
||||
Всего два слова — <i>абсолютная взаимосвязанность.</i> <br>
|
||||
<img src="images/globe.png" align="right">
|
||||
Всего два слова — <i>абсолютная взаимосвязанность.</i>
|
||||
|
||||
У каждого есть свой предпочтительный формат общения — кто-то любит потоки молниеносных сообщений Твиттера, кто-то —
|
||||
сложный формат взаимодействия ВК и Facebook, кто-то предпочитает видео или фото... Теперь представьте, что из Твиттера
|
||||
вы можете комментировать/лайкать/репостить посты YouTube, Instagram, ВК, а авторы, вещающие в удобном для них формате,
|
||||
оттуда вам отвечают, поддерживая полноценное общение, и никуда не надо перелогиниваться. Удобно? <i>У нас так можно.</i>
|
||||
</p>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
|
||||
<div class="textblock">
|
||||
<article class="card four-fifth-1000">
|
||||
|
||||
<h2>Ну ладно. Что дальше?</h2>
|
||||
<p>
|
||||
<h3>Просто попробуйте свободную альтернативу:</h3>
|
||||
|
||||
<div class="imgblock">
|
||||
<a href="images/mastodon2.png" >
|
||||
<img src="images/mastodon2.png" width=45% style="float:left; margin:1%;" class="zoom"></a>
|
||||
<header>Ну ладно. Что дальше?</header>
|
||||
<p>Просто попробуйте свободную альтернативу</p>
|
||||
<p>Все неэтичные сервисы, работющие против вас, можно легко заменить на свободные аналоги, которые зачастую намного удобнее и функциональнее. Ознакомьтесь с примерами ниже.</p>
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Twitter</header>
|
||||
<center><label for="modal_masto"><img src="images/mastodon2.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_masto" type="checkbox" />
|
||||
<label for="modal_masto" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Mastodon</h3>
|
||||
<label for="modal_masto" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/mastodon2.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
<p>
|
||||
Замените Twitter на <a href="social.html#mastodon">Mastodon</a> — он намного удобней. (На данный момент
|
||||
— самая популярная из этичных социальных сетей с миллионами пользователей. Больше всего напоминает Твиттер,
|
||||
только с большим лимитом символов и более гибким интерфейсом).
|
||||
</div>
|
||||
|
||||
<div class="imgblock">
|
||||
<a href="images/friendica.png" >
|
||||
<img src="images/friendica.png" width=45% style= "float:left; margin:1%;" class="zoom"></a>
|
||||
только с большим лимитом символов и более гибким интерфейсом).</p>
|
||||
</article>
|
||||
<br>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Facebook/Вконтакте</header>
|
||||
<center><label for="modal_fr"><img src="images/friendica.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_fr" type="checkbox" />
|
||||
<label for="modal_fr" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Friendica</h3>
|
||||
<label for="modal_fr" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/friendica.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
<p>
|
||||
|
||||
Замените Facebook/ВК на <a href="social.html#friendica">Friendica</a>. Также, как и Мастодон,
|
||||
Friendica создана из множества мелких сайтов, связанных воедино посредством федерации. Мелкие сайты, составляющие Френдику, называются "нодами".
|
||||
Френдика также связана с Мастодоном, Диаспорой, PixelFed, PeerTube и всеми остальными альтернативными соцсетями, так что завести друзей в этих сетях не составит труда.
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/pixelfed.png" >
|
||||
<img src="images/pixelfed.png" width=45% style="float:left; margin:1%;" class="zoom"></a>
|
||||
А вместо Instagram есть прекрасный <a href="social.html#pixelfed">PixelFed</a> — работает в любом браузере, между прочим.
|
||||
</div>
|
||||
<p>И ведь на безопасные для вас альтернативы можно заменить очень многое... Пройдитесь по разделам сайта — вы будете приятно удивлены.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"</a>
|
||||
|
||||
|
||||
Френдика также связана с Мастодоном, Диаспорой, PixelFed, PeerTube и всеми остальными альтернативными соцсетями, так что завести друзей в этих сетях не составит труда. </p>
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Instagram</header>
|
||||
<center><label for="modal_pf"><img src="images/pixelfed.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_pf" type="checkbox" />
|
||||
<label for="modal_pf" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>PixelFed</h3>
|
||||
<label for="modal_pf" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/pixelfed.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
<p>А вместо Instagram есть прекрасный <a href="social.html#pixelfed">PixelFed</a> — работает в любом браузере, между прочим.</p>
|
||||
</article>
|
||||
<p>И ведь на безопасные для вас альтернативы можно заменить очень многое... Пройдитесь по разделам сайта — вы будете приятно удивлены.</p>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
152
info.html
|
@ -10,40 +10,127 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор!</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/popup.css">
|
||||
</head>
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html">Главная</a></li>
|
||||
<li><a href="mail.html">Почта</a></li>
|
||||
<li><a href="im.html">Мессенджеры</a></li>
|
||||
<li><a href="social.html">Соцсети</a></li>
|
||||
<li><a href="search.html">Поисковики</a></li>
|
||||
<li><a href="extra.html">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html" class="active">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="social.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
|
||||
|
||||
<div class="textblock">
|
||||
<article class="four-fifth-1000">
|
||||
|
||||
<div class="imgblock">
|
||||
<a href="images/koshka.jpg" >
|
||||
<img src="images/koshka.jpg" width=45% max-width=100% alt="До-Ре-Ми-Фа-Соль-Ля-Си. Кошка села за репост." class="zoom" >
|
||||
</a>
|
||||
<center><label for="modal_k"><img src="images/koshka.jpg" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_k" type="checkbox" />
|
||||
<label for="modal_k" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>...кошка села за репост...</h3>
|
||||
<label for="modal_k" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/koshka.jpg" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<h1>Знакомая картинка?</h1>
|
||||
<h2> Смешно или грустно? Постоянное опасение, что за любое неверно истолкованное
|
||||
|
||||
|
||||
<h2>Знакомая картинка?</h2>
|
||||
<h3> Смешно или грустно? Постоянное опасение, что за любое неверно истолкованное
|
||||
слово "за вами придут", но с людьми в сети общаться хочется, хочется постить котиков и смешные
|
||||
картинки, хочется делиться своим творчеством и наслаждаться чужим, но без страха?
|
||||
</h2>
|
||||
<p>
|
||||
</h3>
|
||||
<p>
|
||||
Забудьте. Хочется открыто высказывать своё мнение, и не попадать под цензуру администрации сети, просто
|
||||
за непопулярную там точку зрения? А может, вам ещё и не нравится быть товаром, да не штучным,
|
||||
а мелочью в крупнооптовой партии? А может, вы ещё и о тайне личной переписки мечтаете? <b>Забудьте</b>.
|
||||
|
@ -143,11 +230,16 @@
|
|||
|
||||
|
||||
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
|
340
mail.html
|
@ -10,36 +10,123 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор! — Электронная почта</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/btn.css">
|
||||
</head>
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html">Главная</a></li>
|
||||
<li><a href="mail.html" class="active">Почта</a></li>
|
||||
<li><a href="im.html">Мессенджеры</a></li>
|
||||
<li><a href="social.html">Соцсети</a></li>
|
||||
<li><a href="search.html">Поисковики</a></li>
|
||||
<li><a href="extra.html">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="social.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Электронная почта</h2>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h3>Электронная почта<h3></header>
|
||||
|
||||
<p>Старейший инструмент сетевого общения, распределённый по своей природе. Но даже его затронула монополизация. Куда же деваться человеку, не желающему быть товаром и не готовому мириться с копающимися в его переписке маркетологами? Есть варианты.</p>
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>MailFence</header>
|
||||
<center><label for="modal_mf"><img src="images/mailfence.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_mf" type="checkbox" />
|
||||
<label for="modal_mf" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>MailFence</h3>
|
||||
<label for="modal_mf" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/mailfence.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<p>Старейший инструмент сетевого общения, распределённый по своей природе. Но даже его затронула монополизация. </p>
|
||||
<div class="imgblock">
|
||||
<a href="images/mailfence.png" >
|
||||
<img src="images/mailfence.png" width=43% max-width=100% style="float:left; margin:1%" alt="MailFence" class="zoom"></a>
|
||||
<h3>MailFence</h3>
|
||||
<span>
|
||||
Бельгийский сервис электронной почты без рекламы и отслеживания. Поддерживает GPG-шифрование, не выдаёт данные пользователей
|
||||
третьим лицам. Базовая учётная запись бесплатна, но можно докупить себе больше места и расширенную техподдержку.<br>
|
||||
|
@ -47,22 +134,39 @@
|
|||
<a href="https://edri.org/">Европейского фонда цифровых прав</a><br>
|
||||
|
||||
</span>
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://mailfence.com/ru/index.jsp#register">MailFence</a>
|
||||
<h4>Приложения</h4>
|
||||
<a class="Button" href="https://mailfence.com/ru/">MailFence Web</a>
|
||||
<br>Для пользователей платных аккаунтов доступна работа с любого почтового клиента, включая встроенные.
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-1' type='radio' name='tabgroupB' checked />
|
||||
<label class="pseudo button toggle" for="tab-1">Где зарегистрироваться</label>
|
||||
<input id='tab-2' type='radio' name='tabgroupB'>
|
||||
<label class="pseudo button toggle" for="tab-2">Приложения</label>
|
||||
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://mailfence.com/ru/index.jsp#register">MailFence</a></button></center></div>
|
||||
<div><center><button class="pseudo"><a href="https://mailfence.com/ru/">MailFence Web</a></button><br> (Для пользователей платных аккаунтов доступна работа с любого почтового клиента, включая встроенные.)</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/tutanota_w.png" >
|
||||
<picture>
|
||||
<source srcset="images/tutanota.png" media="(max-width: 600px)">
|
||||
<source srcset="images/tutanota_w.png">
|
||||
<img src="images/tutanota_w.png" width=45% max-width="100%" style="float:left; margin:1%;" alt="Tutanota" class="zoom">
|
||||
</picture></a>
|
||||
<h3>Tutanota</h3>
|
||||
</center>
|
||||
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Tutanota</header>
|
||||
<center><label for="modal_tn"><img src="images/tutanota_w.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_tn" type="checkbox" />
|
||||
<label for="modal_tn" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Tutanota</h3>
|
||||
<label for="modal_tn" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/tutanota_w.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<span>
|
||||
Сервис, расположенный в Германии, без рекламы и с фокусом на приватность.
|
||||
Позволяет надёжно шифровать даже сообщения, отправляемые пользователям других сервисов,
|
||||
|
@ -70,79 +174,117 @@
|
|||
Базовая учётная запись бесплатна, за деньги можно получить больше места и возможностей.<br>
|
||||
|
||||
</span>
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://tutanota.com">Tutanota</a>
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=de.tutao.tutanota"><IMG src="images/google.png" width="24" height="24">Tutanota</a>
|
||||
<a class="Button2" href="https://f-droid.org/en/packages/de.tutao.tutanota/"><IMG src="images/fdroid.png" width="24" height="24">Tutanota</a>
|
||||
<a class="Button2" href="https://itunes.apple.com/app/tutanota/id922429609"><IMG src="images/apple.png" width="24" height="24">Tutanota</a>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-11' type='radio' name='tabgroupC' checked />
|
||||
<label class="pseudo button toggle" for="tab-11">Где зарегистрироваться</label>
|
||||
<input id='tab-21' type='radio' name='tabgroupC'>
|
||||
<label class="pseudo button toggle" for="tab-21">Мобильные приложения</label>
|
||||
<div class="row">
|
||||
<div>
|
||||
<center>
|
||||
<button class="warning">
|
||||
<a href="https://tutanota.com">Tutanota</a>
|
||||
</button>
|
||||
</center>
|
||||
</div>
|
||||
<div><center>
|
||||
<button class="pseudo">
|
||||
<a href="https://play.google.com/store/apps/details?id=de.tutao.tutanota"><img src="images/google.png">Tutanota</a>
|
||||
</button>
|
||||
<button class="pseudo">
|
||||
<a href="https://f-droid.org/en/packages/de.tutao.tutanota/"><img class="logo" src="images/fdroid.png">Tutanota</a>
|
||||
</button>
|
||||
<button class="pseudo">
|
||||
<a href="https://itunes.apple.com/app/tutanota/id922429609"><IMG src="images/apple.png" width="24" height="24">Tutanota</a>
|
||||
</button>
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/posteo.jpg" >
|
||||
<img src="images/posteo.jpg" width=45% max-width="100%" style="float:left; margin:1%;" alt="Posteo" class="zoom"></a>
|
||||
<h3>Posteo</h3>
|
||||
</center>
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Posteo</header>
|
||||
<center><label for="modal_po"><img src="images/posteo.jpg" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_po" type="checkbox" />
|
||||
<label for="modal_po" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Posteo</h3>
|
||||
<label for="modal_po" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/posteo.jpg" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<span>
|
||||
Почтовый сервис без рекламы, максимально приватный и использующий исключительно "зелёное" электричество.
|
||||
Оплачивается полностью за счёт пользователей. Отдельных мобильных приложений нет и не требуется —
|
||||
можно использовать встроенные или любые другие, поддерживающие протокол IMAP.<br>
|
||||
</span>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-12' type='radio' name='tabgroupD' checked />
|
||||
<label class="pseudo button toggle" for="tab-12">Где зарегистрироваться</label>
|
||||
<input id='tab-22' type='radio' name='tabgroupD'>
|
||||
<label class="pseudo button toggle" for="tab-22">Приложения</label>
|
||||
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://posteo.de/en">Posteo</a>
|
||||
<h4>Мобильные приложения</h4>
|
||||
<p>Любое приложение электронной почты, включая встроенные</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/cockmail.png" >
|
||||
<img src="images/cockmail.png" width=45% max-width="100%" style="float:left; margin:1%;" alt="CockMail" class="zoom"></a>
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://posteo.de/en">Posteo</a></button></center></div>
|
||||
<div><center>Любое приложение электронной почты, включая встроенные
|
||||
</div>
|
||||
</center>
|
||||
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Cockmail</header>
|
||||
<center><label for="modal_cm"><img src="images/cockmail.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_cm" type="checkbox" />
|
||||
<label for="modal_cm" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Cockmail</h3>
|
||||
<label for="modal_cm" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/cockmail.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<h3>Cockmail</h3>
|
||||
<span>
|
||||
Сервис, поддерживающий множество доменов. Существует на добровольные пожертвования пользователей, которые
|
||||
принимаются в том числе в криптовалютах. Быстр, бесплатен и надёжен. Как и в случае с Posteo,
|
||||
отдельных приложений не требуется - POP3, IMAP, SMTP поддерживаются.<br>
|
||||
</span>
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://cock.li/register">Cock.li</a>
|
||||
<h4>Мобильные приложения</h4>
|
||||
<p>Любое приложение электронной почты, включая встроенные</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/thexyz.png" >
|
||||
<picture>
|
||||
<source srcset="images/thexyz_m.png" media="(max-width: 600px)">
|
||||
<source srcset="images/thexyz.png">
|
||||
<img src="images/thexyz.png" width=45% max-width="100%" style="float:left; margin:1%;" alt="TheXYZ" class="zoom"></a>
|
||||
</picture>
|
||||
<h3>TheXYZ</h3>
|
||||
<span>
|
||||
Канадская компания, предлагающая конфиденциальный почтовый сервис бизнес-уровня.
|
||||
Есть дешёвые базовые аккаунты с дополнительными платными опциями для профессиональных
|
||||
сервисов вроде MS Exchange и синхронизации календаря. Наряду с собственными мобильными приложениями,
|
||||
сервис может использоваться встроенными приложениями, равно как и любыми другими,
|
||||
поддерживающими IMAP или Exchange (за дополнительную плату).<br>
|
||||
<br>
|
||||
</span>
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://www.thexyz.com/webmail.html">TheXYZ</a>
|
||||
</div>
|
||||
<div class="textblock">
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=com.perrythexyz.com.perry2.thexyzwebmail"><IMG src="images/google.png" width="24" height="24">Thexyz</a>
|
||||
<a class="Button2" href="https://itunes.apple.com/us/app/thexyz-webmail/id741897892"><IMG src="images/apple.png" width="24" height="24">Thexyz</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"</a>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-13' type='radio' name='tabgroupE' checked />
|
||||
<label class="pseudo button toggle" for="tab-13">Где зарегистрироваться</label>
|
||||
<input id='tab-23' type='radio' name='tabgroupE'>
|
||||
<label class="pseudo button toggle" for="tab-23">Приложения</label>
|
||||
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://cock.li/register">Cock.li</a></button></center></div>
|
||||
<div><center>Любое приложение электронной почты, включая встроенные
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
258
search.html
|
@ -12,30 +12,104 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор! - Поисковые системы.</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/btn.css">
|
||||
</head>
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html">Главная</a></li>
|
||||
<li><a href="mail.html">Почта</a></li>
|
||||
<li><a href="im.html">Мессенджеры</a></li>
|
||||
<li><a href="social.html">Соцсети</a></li>
|
||||
<li><a href="search.html" class="active">Поисковики</a></li>
|
||||
<li><a href="extra.html">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="social.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Зачем вообще менять поисковик?</h2>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h2>Зачем вообще менять поисковик?</h2></header>
|
||||
<p>
|
||||
<img src="images/q.png" align="right" style="margin: 0px 0px 0px 10px;" alt="question">
|
||||
Централизованные поисковые системы, ярчайшими (в негативном смысле) представителями которых являются
|
||||
|
@ -48,12 +122,9 @@
|
|||
зомбирования и манипуляции. Ну и не забывайте о вездесущей рекламе, порой залезающей в весьма интимные
|
||||
сферы вашей жизни.
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Альтернативные варианты</h2>
|
||||
</article>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h2>Альтернативные варианты</h2></header>
|
||||
<p>
|
||||
<img src="images/mag.png" align="right" style="margin: 0px 0px 0px 10px;" alt="searching">
|
||||
Поиск в море информации современной Сети — дело ресурсозатратное. Нужны огромные мощности для анализа и индексации
|
||||
|
@ -65,22 +136,43 @@
|
|||
пользователями), нас не устраивает. Рассмотрим остальные.
|
||||
</p>
|
||||
<p>
|
||||
<h3>Вариант первый - открытый метапоиск</h3>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h3>Вариант первый - открытый метапоиск</h3></header>
|
||||
Поисковые системы, избравшие этот вариант, используют выдачу поисковых гигантов, проксируя и обезличивая ваши запросы.
|
||||
Это не требует больших затрат вычислительных мощностей и позволяет обходиться пожертвованиями или нетаргетированной рекламой.
|
||||
</p>
|
||||
<div class="imgblock">
|
||||
<a href="images/searx.png" >
|
||||
<img src="images/searx.png" width=50% max-width=100% style="float:left; margin:1%;" alt="SearX" class="zoom"></a>
|
||||
<h4>Searx</h4>
|
||||
|
||||
|
||||
<article class="card four-fifth-1000">
|
||||
<header>SearX</header>
|
||||
<center><label for="modal_sx"><img src="images/searx.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_sx" type="checkbox" />
|
||||
<label for="modal_sx" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>SearX</h3>
|
||||
<label for="modal_sx" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/searx.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<span>
|
||||
|
||||
<p>
|
||||
Это метапоисковик с <a href="https://github.com/asciimoo/searx">открытым</a> исходным кодом, что позволяет каждому
|
||||
желающему поднять свой поисковый сервер. Обычный же пользователь может выбрать из множества уже существующих.
|
||||
Например, этих:<br>
|
||||
<a class="Button" href="https://search.fedi.life/">search.fedi.life</a>
|
||||
<a class="Button" href="https://a.searx.space/">a.searx.space</a>
|
||||
<a class="Button" href="https://searx.info">searx.info</a>
|
||||
<a class="Button" href="https://searx.be">searx.be</a> <br>
|
||||
Например, этих:
|
||||
<ul>
|
||||
<li><a href="https://a.searx.space/">a.searx.space</a></li>
|
||||
<li><a href="https://searx.info">searx.info</a></li>
|
||||
<li><a class="Button" href="https://searx.be">searx.be</a></li>
|
||||
</ul>
|
||||
<br>
|
||||
(полный список доступен <a href="https://searx.space">здесь</a>)
|
||||
</p>
|
||||
<p>
|
||||
|
@ -88,33 +180,75 @@
|
|||
(Выбрать предпочтительные вы можете в настройках), что обеспечивает релевантную и гибко настраиваемую лично вами
|
||||
поисковую выдачу.
|
||||
</p>
|
||||
</div>
|
||||
<p>
|
||||
<h3>Вариант второй - гранты и общественные проекты</h3>
|
||||
</span>
|
||||
</article>
|
||||
</article>
|
||||
<article class="four-fifth-1000">
|
||||
<header><h3>Вариант второй - гранты и общественные проекты</h3></header>
|
||||
<span>
|
||||
В этом случае команда поддержки поисковика интегрируется с общественными движениям и делит финансирование от
|
||||
грантов и пожертвований наравне с доходами от неследящей рекламы в самой поисковой системе.
|
||||
</p>
|
||||
<div class="imgblock">
|
||||
<a href="images/ecosia.png" >
|
||||
<img src="images/ecosia.png" width=50% max-width=100% style="float:left; margin:1%;" alt="Ecosia" class="zoom"></a>
|
||||
<h4>Яркий пример — Ecosia</h4>
|
||||
</span>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>Ecosia</header>
|
||||
<center><label for="modal_ec"><img src="images/ecosia.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_ec" type="checkbox" />
|
||||
<label for="modal_ec" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Ecosia</h3>
|
||||
<label for="modal_ec" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/ecosia.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<span>
|
||||
|
||||
<p>
|
||||
Этот поисковик направляет часть доходов от рекламы и грантов на посадку деревьев по всему миру. Задумка проста:
|
||||
хотите помочь озеленить планету — отключите блокировку рекламы на этом сайте и вперёд — сажайте
|
||||
деревья, просто используя поисковик!
|
||||
</p>
|
||||
<a class="Button" href="https://ecosia.org">Ecosia</a>
|
||||
</div>
|
||||
<p>
|
||||
<h3>Вариант третий - федерация</h3>
|
||||
<a href="https://ecosia.org">Ecosia</a>
|
||||
</span>
|
||||
</article>
|
||||
</article>
|
||||
|
||||
<article class="four-fifth-1000">
|
||||
<header><h3>Вариант третий - федерация</h3></header>
|
||||
<span>
|
||||
Приверженцы этого подхода зашли с другой стороны. Основная проблема поиска — в огромных вычислительных ресурсах, необходимых
|
||||
для его нормальной работы, а купить датацентр может позволить себе далеко не каждый? Не проблема — мы просто распределим
|
||||
ресурсы. Каждый будет индексировать малюсенький кусочек сети со своего собственного слабого сервера и делиться результатами
|
||||
с остальными. И это действительно работает!
|
||||
<div class="imgblock">
|
||||
<a href="images/yacy.png" >
|
||||
<img src="images/yacy.png" width=50% max-width=100% style="float:left; margin:1%;" alt="YaCy" class="zoom"></a>
|
||||
<h4>YaCy</h4>
|
||||
</span>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>YaCy</header>
|
||||
<center><label for="modal_yc"><img src="images/yacy.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_yc" type="checkbox" />
|
||||
<label for="modal_yc" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>YaCy</h3>
|
||||
<label for="modal_yc" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/yacy.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<span>
|
||||
|
||||
<p>
|
||||
|
||||
Этот вариант подойдёт продвинутым пользователям и системным администраторам, так как проект ориентирован
|
||||
в первую очередь на развёртывание инстанции "под себя". Всё достаточно просто — вы устанавливаете приложение,
|
||||
выбираете режим работы (P2P Mode — основной режим, при котором вы можете делиться своими результатами индексации
|
||||
|
@ -123,18 +257,18 @@
|
|||
по локальному сайту или внутренней сети). Далее — индекируйте, всё, что вам вздумается, предоставляйте результаты
|
||||
сообществу, если хотите, а можете открыть свой портал остальным, например, друзьям и знакомым.
|
||||
<br>
|
||||
<a class="Button" href="https://yacy.net/">Yacy</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<hr>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"</a>
|
||||
<a href="https://yacy.net/">Yacy</a>
|
||||
</article>
|
||||
</article>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
|
||||
|
||||
</body>
|
||||
|
|
377
social.html
|
@ -11,36 +11,125 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>У вас всегда есть выбор! — Соцсети</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/base.css">
|
||||
<link rel="stylesheet" href="css/menu.css">
|
||||
<link rel="stylesheet" href="css/btn.css">
|
||||
</head>
|
||||
<link rel="stylesheet" href="css/picnic.min.css">
|
||||
<style>aside a.top {
|
||||
font-size: 0;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
font-weight: bold;
|
||||
width: 180px;
|
||||
padding: .6em 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: .3em .3em 0 0;
|
||||
transition: all .3s ease;
|
||||
}
|
||||
aside a.top.visible {
|
||||
font-size: 1em;
|
||||
}
|
||||
aside .links a.button {
|
||||
text-align: left;
|
||||
}
|
||||
@media all and (max-width: 1000px) {
|
||||
aside a.pseudo.top {
|
||||
background: rgba(255, 255, 255, .8);
|
||||
width: 100%;
|
||||
left: 0;
|
||||
text-align: center;
|
||||
z-index: 100;
|
||||
}
|
||||
}
|
||||
.documentation article > h2 {
|
||||
margin: -2em 0 .6em;
|
||||
padding: 3em 0 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation article > h3 {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.documentation aside h2 {
|
||||
margin-top: 0;
|
||||
padding: 1.25em 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.documentation aside a.pseudo {
|
||||
color: #0074D9;
|
||||
margin: 0;
|
||||
}
|
||||
.documentation > section {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 80px 0 0;
|
||||
}
|
||||
.documentation article > h1 {
|
||||
margin: 0;
|
||||
padding: 0.6em 0;
|
||||
font-size: 2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.documentation aside a.button {
|
||||
display: block;
|
||||
}
|
||||
.documentation pre[class*="language-"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.documentation .index pre {
|
||||
margin: 0;
|
||||
font-size: .9em;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<input type="checkbox" id="menu">
|
||||
<label for="menu" onclick></label>
|
||||
<nav role="off-canvas">
|
||||
<ul>
|
||||
<li><a href="index.html">Главная</a></li>
|
||||
<li><a href="mail.html">Почта</a></li>
|
||||
<li><a href="im.html">Мессенджеры</a></li>
|
||||
<li><a href="social.html" class="active">Соцсети</a></li>
|
||||
<li><a href="search.html">Поисковики</a></li>
|
||||
<li><a href="extra.html">Документы и агитматериалы</a></li>
|
||||
<li><a href="info.html">Подробнее</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<nav class="fedi">
|
||||
<a href="https://fedi.life" class="brand">
|
||||
<img class="logo" src="images/logo.png" />
|
||||
<span>Fedi.Life</span>
|
||||
</a>
|
||||
|
||||
<!-- responsive-->
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="burger pseudo button">menu</label>
|
||||
|
||||
<div class="textblock">
|
||||
<h2>Социальные сети</h2>
|
||||
<div class="menu">
|
||||
<a href="mail.html" class="pseudo button">Почта</a>
|
||||
<a href="im.html" class="pseudo button">Мессенджеры</a>
|
||||
<a href="im.html" class="pseudo button">Соцсети</a>
|
||||
<a href="search.html" class="pseudo button">Поисковики</a>
|
||||
<a href="extra.html" class="pseudo button">Документы и агитматериалы</a>
|
||||
<a href="info.html" class="pseudo button">Подробнее</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main id="home" class="documentation">
|
||||
<section class="flex">
|
||||
|
||||
<article class="four-fifth-1000">
|
||||
|
||||
<header><h3>Социальные сети</h3></header>
|
||||
|
||||
<p>Ключевой инструмент взаимодействия в современной Сети. Познакомьтесь с альтернативами</p>
|
||||
<div class="imgblock">
|
||||
<a href="images/mastodon2.png" >
|
||||
<img src="images/mastodon2.png" width="45%" max-width="100%" style="float:left; margin:1%;" class="zoom"></a>
|
||||
<h3 id="mastodon" >#вместотвиттера Mastodon</h3>
|
||||
<span>
|
||||
</article>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>#вместотвиттера Mastodon</header>
|
||||
<center><label for="modal_md"><img src="images/mastodon2.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_md" type="checkbox" />
|
||||
<label for="modal_md" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Mastodon</h3>
|
||||
<label for="modal_md" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/mastodon2.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
<span>На данный момент — самая популярная из этичных социальных сетей с миллионами пользователей.
|
||||
Больше всего напоминает Твиттер, только с большим лимитом символов и более гибким интерфейсом.
|
||||
</span>
|
||||
|
@ -57,35 +146,51 @@
|
|||
</p>
|
||||
|
||||
</span>
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://mastodon.ml">Russian Mastodon</a>
|
||||
<a class="Button" href="https://quey.org">Quey</a>
|
||||
<a class="Button" href="https://lor.sh">LOR.sh</a>
|
||||
<a class="Button" href="https://mstdn.netwhood.online">Network Neighborhood</a>
|
||||
</div>
|
||||
<div class="textblock">
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=app.fedilab.android"><IMG src="images/google.png" width="24" height="24">Fedilab (Платно)</a>
|
||||
<a class="Button2" href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><IMG src="images/fdroid.png" width="24" height="24">Fedilab (бесплатно)</a>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=jp.juggler.subwaytooter"><IMG src="images/google.png" width="24" height="24">Subway Tooter</a>
|
||||
<a class="Button2" href="https://f-droid.org/en/packages/com.keylesspalace.tusky"><IMG src="images/fdroid.png" width="24" height="24">Tusky (F-Droid)</a>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=com.keylesspalace.tusky"><IMG src="images/google.png" width="24" height="24">Tusky (Google Play)</a>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-1' type='radio' name='tabgroupB' checked />
|
||||
<label class="pseudo button toggle" for="tab-1">Где зарегистрироваться</label>
|
||||
<input id='tab-2' type='radio' name='tabgroupB'>
|
||||
<label class="pseudo button toggle" for="tab-2">Приложения</label>
|
||||
|
||||
<a class="Button2" href="https://itunes.apple.com/app/toot/id1229021451"><IMG src="images/apple.png" width="24" height="24">Toot!</a>
|
||||
<a class="Button2" href="https://itunes.apple.com/app/mast/id1437429129"><IMG src="images/apple.png" width="24" height="24">Mast</a>
|
||||
<a class="Button2" href="https://itunes.apple.com/app/amarok-for-mastodon/id1214116200"><IMG src="images/apple.png" width="24" height="24">Amaroq</a>
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://phreedom.tk">Свобода</a></button>
|
||||
<button class="warning"><a href="https://mastodon.ml">Русский Мастодон</a></button>
|
||||
<button class="warning"><a href="https://quey.org">Quey</a></button>
|
||||
<button class="warning"><a href="https://lor.sh">LOR.sh</a></button>
|
||||
<button class="warning"><a href="https://mstdn.netwhood.online/">Network Neighborhood</a></button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/friendica.png" >
|
||||
<img src="images/friendica.png" width=45% max-width="100%" style="float:left; margin:1%;" class="zoom"></a>
|
||||
<h3 id="friendica">#вместоВК Friendica</h3>
|
||||
</center></div>
|
||||
<div><center><button class="pseudo"><a href="https://play.google.com/store/apps/details?id=app.fedilab.android"><img src="images/google.png">Fedilab (платно)</a></button><br>
|
||||
<button class="pseudo"><a href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><img src="images/fdroid.png">Fedilab (бесплатно)</a></button>
|
||||
<button class="pseudo"><a href="https://itunes.apple.com/app/toot/id1229021451"><img src="images/apple.png">Toot!</a></button>
|
||||
<button class="pseudo"><a href="https://itunes.apple.com/app/amarok-for-mastodon/id1214116200"><img src="images/apple.png">Amaroq</a></button>
|
||||
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
|
||||
<article class="card four-fifth-1000">
|
||||
<header>#вместоВК Friendica</header>
|
||||
<center><label for="modal_fr"><img src="images/friendica.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_fr" type="checkbox" />
|
||||
<label for="modal_fr" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>Friandica</h3>
|
||||
<label for="modal_fr" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/friendica.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<span>
|
||||
Альтернатива Вконтакте и Facebook, с теми же фишками, включая события и фотоальбомы
|
||||
</span>
|
||||
<p> Альтернатива Вконтакте и Facebook, с теми же фишками, включая события и фотоальбомы</p>
|
||||
|
||||
<p>
|
||||
Также, как и Мастодон, Friendica создана из множества мелких сайтов,
|
||||
|
@ -100,29 +205,51 @@
|
|||
в этих сетях не составит труда.
|
||||
|
||||
</p>
|
||||
</span>
|
||||
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://nerdica.net">Nerdica</a>
|
||||
<a class="Button" href="https://friendica.xyz">Friendica.XYZ</a>
|
||||
<a class="Button" href="https://venera.social">Venera</a>
|
||||
<a class="Button" href="https://loma.ml">Loma</a>
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=app.fedilab.android"><IMG src="images/google.png" width="24" height="24">Fedilab (Платно)</a>
|
||||
<a class="Button2" href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><IMG src="images/fdroid.png" width="24" height="24">Fedilab (бесплатно)</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/pixelfed.png" >
|
||||
<img src="images/pixelfed.png" width=45% max-width=100% style="float:left; margin:1%;" class="zoom"></a>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-21' type='radio' name='tabgroupC' checked />
|
||||
<label class="pseudo button toggle" for="tab-21">Где зарегистрироваться</label>
|
||||
<input id='tab-22' type='radio' name='tabgroupC'>
|
||||
<label class="pseudo button toggle" for="tab-22">Приложения</label>
|
||||
|
||||
<h3 id="pixelfed" >#вместоinstagram PixelFed</h3>
|
||||
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://nerdica.net">Nerdica</a></button>
|
||||
<button class="warning"><a href="https://friendica.xyz">Friendica.xyz</a></button>
|
||||
<button class="warning"><a href="https://venera.social">Venera</a></button>
|
||||
<button class="warning"><a href="https://loma.ml">Loma</a></button>
|
||||
|
||||
</center></div>
|
||||
<div><center><button class="pseudo"><a href="https://play.google.com/store/apps/details?id=app.fedilab.android"><img src="images/google.png">Fedilab (платно)</a></button><br>
|
||||
<button class="pseudo"><a href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><img src="images/fdroid.png">Fedilab (бесплатно)</a></button>
|
||||
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
|
||||
<article class="card four-fifth-1000">
|
||||
<header>#вместоInstagram PixelFed</header>
|
||||
<center><label for="modal_pf"><img src="images/pixelfed.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_pf" type="checkbox" />
|
||||
<label for="modal_pf" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>PixelFed</h3>
|
||||
<label for="modal_pf" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/pixelfed.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<span>
|
||||
|
||||
Открытая распределённая альтернатива Instagram — с фильтрами, комментариями, лайками, репостами и так далее, но без рекламы и слежки.
|
||||
</span>
|
||||
<p>Открытая распределённая альтернатива Instagram — с фильтрами, комментариями, лайками, репостами и так далее, но без рекламы и слежки.</p>
|
||||
|
||||
<p>
|
||||
Сеть состоит из мелких независимых сайтов, способных общаться между собой,
|
||||
|
@ -138,30 +265,53 @@
|
|||
в любом браузере на компьютере, телефоне или планшете.
|
||||
|
||||
</p>
|
||||
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://pixelfed.de">pixelfed.de</a>
|
||||
<a class="Button" href="https://pxlfd.me">pxlfd.me</a>
|
||||
<a class="Button" href="https://pixelfed.tokyo">pixelfed.tokyo</a>
|
||||
<a class="Button" href="https://pixelfed.se">pixelfed.se</a>
|
||||
</span>
|
||||
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-31' type='radio' name='tabgroupD' checked />
|
||||
<label class="pseudo button toggle" for="tab-31">Где зарегистрироваться</label>
|
||||
<input id='tab-32' type='radio' name='tabgroupD'>
|
||||
<label class="pseudo button toggle" for="tab-32">Приложения</label>
|
||||
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=app.fedilab.android"><IMG src="images/google.png" width="24" height="24">Fedilab (Платно)</a>
|
||||
<a class="Button2" href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><IMG src="images/fdroid.png" width="24" height="24">Fedilab (бесплатно)</a>
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://pix.phreedom.tk">Phreedom Pix</a></button>
|
||||
<button class="warning"><a href="https://pxlfd.me">pxlfd.me</a></button>
|
||||
<button class="warning"><a href="https://pixelfed.tokyo">Tokyo</a></button>
|
||||
<button class="warning"><a href="https://pixelfed.se">Pixelfed.se</a></button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="imgblock">
|
||||
<a href="images/peertube.png" >
|
||||
<img src="images/peertube.png" width=45% max-width=100% style="float:left; margin:1%;" class="zoom"></a>
|
||||
<h3 id="peertube">#вместоyoutube PeerTube</h3>
|
||||
</center></div>
|
||||
<div><center><button class="pseudo"><a href="https://play.google.com/store/apps/details?id=app.fedilab.android"><img src="images/google.png">Fedilab (платно)</a></button><br>
|
||||
<button class="pseudo"><a href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><img src="images/fdroid.png">Fedilab (бесплатно)</a></button>
|
||||
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
|
||||
<span>
|
||||
<article class="card four-fifth-1000">
|
||||
<header>#вместоyoutube PeerTube</header>
|
||||
<center><label for="modal_pt"><img src="images/peertube.png" width="80%"></label> </center>
|
||||
<div class="modal">
|
||||
<input id="modal_pt" type="checkbox" />
|
||||
<label for="modal_pt" class="overlay"></label>
|
||||
<article>
|
||||
<header>
|
||||
<h3>PeerTube</h3>
|
||||
<label for="modal_pt" class="close">×</label>
|
||||
</header>
|
||||
<section class="content">
|
||||
<img src="images/peertube.png" width="100%">
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
||||
<span><p>
|
||||
PeerTube — открытая распределённая альтернатива YouTube (принадлежит Google).
|
||||
Это соцсеть, приспособленная для распространения видео, без рекламы и слежки.
|
||||
|
||||
</span>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
В отличие от YouTube, PeerTube состоит из множества независимых сайтов,
|
||||
|
@ -177,24 +327,45 @@
|
|||
Friendica и так далее.
|
||||
|
||||
</p>
|
||||
</span>
|
||||
<center>
|
||||
<div class="tabs two">
|
||||
<input id='tab-41' type='radio' name='tabgroupE' checked />
|
||||
<label class="pseudo button toggle" for="tab-41">Где зарегистр
|
||||
ироваться</label>
|
||||
<input id='tab-42' type='radio' name='tabgroupE'>
|
||||
<label class="pseudo button toggle" for="tab-42">Приложения</label>
|
||||
|
||||
<div class="textblock">
|
||||
<h4>Где зарегистрироваться</h4>
|
||||
<a class="Button" href="https://video.qoto.org/signup">QOTO Peertube</a>
|
||||
<a class="Button" href="https://video.tedomum.net">video.tedomum.net</a>
|
||||
<a class="Button" href="https://peertube.linuxrocks.online">peertube.linuxrocks.online</a>
|
||||
<a class="Button" href="https://share.tube">share.tube</a>
|
||||
<h4>Мобильные приложения</h4>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=app.fedilab.android"><IMG src="images/google.png" width="24" height="24">Fedilab (Платно)</a>
|
||||
<a class="Button2" href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><IMG src="images/fdroid.png" width="24" height="24">Fedilab (бесплатно)</a>
|
||||
<a class="Button2" href="https://f-droid.org/en/packages/net.schueller.peertube/"><IMG src="images/fdroid.png" width="24" height="24">Thorium</a>
|
||||
<a class="Button2" href="https://play.google.com/store/apps/details?id=net.schueller.peertube"><IMG src="images/google.png" width="24" height="24">PeerTube Player</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"</a>
|
||||
<div class="row">
|
||||
<div><center><button class="warning"><a href="https://video.qoto.org">QOTO Peertube</a></button>
|
||||
<button class="warning"><a href="https://video.tedomum.net">video.tedomum.net</a></button>
|
||||
<button class="warning"><a href="https://peertube.linuxrocks.online">peertube.linuxrocks.online</a></button>
|
||||
<button class="warning"><a href="https://share.tube">share.tube</a></button>
|
||||
|
||||
</center></div>
|
||||
<div><center>
|
||||
<div><center><button class="pseudo"><a href="https://play.google.com/store/apps/details?id=app.fedilab.
|
||||
android"><img src="images/google.png">Fedilab (платно)</a></button><br>
|
||||
<button class="pseudo"><a href="https://f-droid.org/packages/fr.gouv.etalab.mastodon/"><img src="images
|
||||
/fdroid.png">Fedilab (бесплатно)</a></button>
|
||||
<div><center><button class="pseudo"><a href="https://f-droid.org/en/packages/net.schueller.peertube/"><img src="images/fdroid.png">Thorium</a></button><br>
|
||||
<button class="pseudo"><a href="https://https://play.google.com/store/apps/details?id=net.schueller.peertube"><img src="images/google.png">Peertube Player</a></button>
|
||||
|
||||
</center></div>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</article>
|
||||
</article>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
<section>
|
||||
<hr>
|
||||
<center>
|
||||
<a href="https://tolstoevsky.ml"><img src="banner.gif"></a> | Created with <a href="https://picnicss.com/">PicniCSS</a>
|
||||
</center>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|