2019-08-10 18:28:24 +00:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--main-bg-color: #282c37;
|
2020-05-28 13:27:25 +00:00
|
|
|
--link-bg-color: #282c37;
|
2019-08-11 13:02:36 +00:00
|
|
|
--main-fg-color: #dddddd;
|
|
|
|
--main-link-color: #999;
|
|
|
|
--main-visited-color: #888;
|
2019-08-10 18:28:24 +00:00
|
|
|
--border-color: #505050;
|
|
|
|
--font-size-header: 18px;
|
|
|
|
--font-color-header: #ccc;
|
2019-09-01 17:40:49 +00:00
|
|
|
--font-size: 40px;
|
2019-12-12 21:07:05 +00:00
|
|
|
--font-size2: 24px;
|
|
|
|
--font-size3: 38px;
|
2020-05-25 15:53:38 +00:00
|
|
|
--font-size4: 22px;
|
|
|
|
--font-size5: 20px;
|
2019-08-10 20:33:35 +00:00
|
|
|
--text-entry-foreground: #ccc;
|
|
|
|
--text-entry-background: #111;
|
2019-09-11 20:29:47 +00:00
|
|
|
--time-color: #aaa;
|
|
|
|
--button-text: #FFFFFF;
|
|
|
|
--button-background: #999;
|
|
|
|
--button-selected: #666;
|
2020-05-31 10:03:54 +00:00
|
|
|
--hashtag-margin: 2%;
|
2020-05-31 10:15:10 +00:00
|
|
|
--hashtag-vertical-spacing1: 50px;
|
|
|
|
--hashtag-vertical-spacing2: 100px;
|
|
|
|
--hashtag-vertical-spacing3: 100px;
|
|
|
|
--hashtag-vertical-spacing4: 150px;
|
2020-05-31 10:03:54 +00:00
|
|
|
--hashtag-size1: 30px;
|
|
|
|
--hashtag-size2: 40px;
|
2020-06-01 08:41:31 +00:00
|
|
|
--follow-text-size1: 24px;
|
|
|
|
--follow-text-size2: 40px;
|
2020-06-29 18:25:40 +00:00
|
|
|
--follow-text-entry-width: 90%;
|
2019-08-10 18:28:24 +00:00
|
|
|
}
|
|
|
|
|
2020-05-25 11:33:37 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Bedstead';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
font-display: swap;
|
|
|
|
src: url('./fonts/bedstead.otf') format('opentype');
|
|
|
|
}
|
|
|
|
|
2019-07-29 09:49:46 +00:00
|
|
|
body, html {
|
2019-08-10 18:28:24 +00:00
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
|
2019-07-29 09:49:46 +00:00
|
|
|
height: 100%;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-01 17:40:49 +00:00
|
|
|
max-width: 100%;
|
2019-07-29 09:49:46 +00:00
|
|
|
min-width: 600px;
|
2019-08-28 15:45:37 +00:00
|
|
|
margin: 5% auto;
|
2019-07-29 09:49:46 +00:00
|
|
|
}
|
|
|
|
|
2019-08-10 18:28:24 +00:00
|
|
|
a, u {
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited{
|
|
|
|
color: var(--main-visited-color);
|
2020-05-28 13:27:25 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-08-10 18:28:24 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: var(--main-link-color);
|
2020-05-28 13:27:25 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-08-10 18:28:24 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-06-10 12:49:09 +00:00
|
|
|
.searchBanner {
|
2020-06-10 13:14:26 +00:00
|
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5)), url("search_banner.png");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2020-06-10 15:51:58 +00:00
|
|
|
background-size: 90%;
|
2020-06-10 12:49:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 09:49:46 +00:00
|
|
|
.follow {
|
|
|
|
background-image: url("follow-background.png");
|
|
|
|
height: 100%;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
2019-08-10 18:28:24 +00:00
|
|
|
background-color: var(--main-bg-color);
|
2019-07-29 09:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.followAvatar {
|
2019-12-13 17:52:10 +00:00
|
|
|
margin: 0% 0;
|
2019-07-29 09:49:46 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 10:02:09 +00:00
|
|
|
.followAvatar img {
|
|
|
|
border-radius: 10%;
|
|
|
|
width: 20%;
|
2019-07-29 10:05:21 +00:00
|
|
|
min-width: 200px;
|
2019-07-29 10:02:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 09:49:46 +00:00
|
|
|
.followText {
|
2019-08-10 18:28:24 +00:00
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-29 09:49:46 +00:00
|
|
|
}
|
|
|
|
|
2019-12-17 16:11:56 +00:00
|
|
|
.imText {
|
|
|
|
font-size: var(--font-size4);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-17 16:11:56 +00:00
|
|
|
color: var(--main-link-color);
|
2020-05-28 13:27:25 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-12-17 16:11:56 +00:00
|
|
|
}
|
|
|
|
|
2019-12-17 21:08:53 +00:00
|
|
|
.pgp {
|
2019-12-17 21:28:43 +00:00
|
|
|
font-size: var(--font-size5);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-17 21:08:53 +00:00
|
|
|
color: var(--main-link-color);
|
2020-05-28 13:27:25 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-12-17 21:08:53 +00:00
|
|
|
font-family: 'monospace';
|
|
|
|
}
|
|
|
|
|
2019-07-29 09:49:46 +00:00
|
|
|
.button {
|
|
|
|
border-radius: 4px;
|
2019-09-11 20:29:47 +00:00
|
|
|
background-color: var(--button-background);
|
2019-07-29 09:49:46 +00:00
|
|
|
border: none;
|
2019-09-11 20:29:47 +00:00
|
|
|
color: var(--button-text);
|
2019-07-29 09:49:46 +00:00
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
2019-12-12 21:07:05 +00:00
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-29 09:49:46 +00:00
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
cursor: pointer;
|
2019-07-29 10:05:21 +00:00
|
|
|
margin: 30px;
|
2019-07-29 09:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button:hover {
|
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
|
|
|
}
|
2019-07-30 22:34:04 +00:00
|
|
|
|
|
|
|
input[type=text] {
|
2020-06-29 18:25:40 +00:00
|
|
|
width: var(--follow-text-entry-width);
|
2019-07-30 22:34:04 +00:00
|
|
|
clear: both;
|
2019-09-01 17:40:49 +00:00
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-30 22:34:04 +00:00
|
|
|
text-align: center;
|
|
|
|
color: var(--text-entry-foreground);
|
|
|
|
background-color: var(--text-entry-background);
|
|
|
|
}
|
2019-07-31 12:44:08 +00:00
|
|
|
|
|
|
|
.cwButton {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #999;
|
|
|
|
border: none;
|
2019-09-11 20:29:47 +00:00
|
|
|
color: var(--button-text);
|
2019-07-31 12:44:08 +00:00
|
|
|
text-align: center;
|
2019-09-01 17:40:49 +00:00
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-31 12:44:08 +00:00
|
|
|
padding: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cwText {
|
2019-08-10 18:28:24 +00:00
|
|
|
display: none;
|
2019-07-31 12:44:08 +00:00
|
|
|
}
|
2019-08-28 15:45:37 +00:00
|
|
|
|
|
|
|
.options {
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-08-28 15:45:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.options img {
|
2020-07-03 19:33:03 +00:00
|
|
|
width: 15%;
|
2019-08-28 15:45:37 +00:00
|
|
|
}
|
2019-09-01 17:40:49 +00:00
|
|
|
|
|
|
|
@media screen and (min-width: 400px) {
|
2019-12-13 17:57:15 +00:00
|
|
|
.hashtagswarm {
|
2020-05-31 10:03:54 +00:00
|
|
|
font-size: var(--hashtag-size1);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-05-31 10:03:54 +00:00
|
|
|
margin: var(--hashtag-margin);
|
|
|
|
line-height: var(--hashtag-vertical-spacing1);
|
2019-12-12 21:07:05 +00:00
|
|
|
}
|
|
|
|
.followText {
|
2020-06-01 08:41:31 +00:00
|
|
|
font-size: var(--follow-text-size1);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-12 21:07:05 +00:00
|
|
|
}
|
|
|
|
input[type=text] {
|
2020-06-29 18:25:40 +00:00
|
|
|
width: var(--follow-text-entry-width);
|
2019-12-12 21:07:05 +00:00
|
|
|
clear: both;
|
|
|
|
font-size: 24px;
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-12 21:07:05 +00:00
|
|
|
text-align: center;
|
|
|
|
color: var(--text-entry-foreground);
|
|
|
|
background-color: var(--text-entry-background);
|
|
|
|
}
|
|
|
|
.button {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: var(--button-background);
|
|
|
|
border: none;
|
|
|
|
color: var(--button-text);
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 24px;
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-12 21:07:05 +00:00
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 30px;
|
|
|
|
}
|
2020-07-04 10:12:14 +00:00
|
|
|
input[type=checkbox]
|
|
|
|
{
|
|
|
|
-ms-transform: scale(2);
|
|
|
|
-moz-transform: scale(2);
|
|
|
|
-webkit-transform: scale(2);
|
|
|
|
-o-transform: scale(2);
|
|
|
|
transform: scale(2);
|
|
|
|
padding: 10px;
|
|
|
|
margin: 20px 30px;
|
|
|
|
}
|
2019-09-01 17:40:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1000px) {
|
2019-12-13 17:57:15 +00:00
|
|
|
.hashtagswarm {
|
2020-06-01 08:41:31 +00:00
|
|
|
font-size: var(--hashtag-size2);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-05-31 10:03:54 +00:00
|
|
|
margin: var(--hashtag-margin);
|
|
|
|
line-height: var(--hashtag-vertical-spacing3);
|
2019-12-12 21:07:05 +00:00
|
|
|
}
|
|
|
|
.followText {
|
2020-06-01 08:41:31 +00:00
|
|
|
font-size: var(--follow-text-size2);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-12 21:07:05 +00:00
|
|
|
}
|
|
|
|
input[type=text] {
|
2020-06-29 18:25:40 +00:00
|
|
|
width: var(--follow-text-entry-width);
|
2019-12-12 21:07:05 +00:00
|
|
|
clear: both;
|
|
|
|
font-size: 40px;
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-12 21:07:05 +00:00
|
|
|
text-align: center;
|
|
|
|
color: var(--text-entry-foreground);
|
|
|
|
background-color: var(--text-entry-background);
|
|
|
|
}
|
|
|
|
.button {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: var(--button-background);
|
|
|
|
border: none;
|
|
|
|
color: var(--button-text);
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 40px;
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-12-12 21:07:05 +00:00
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 30px;
|
|
|
|
}
|
2020-07-04 10:12:14 +00:00
|
|
|
input[type=checkbox]
|
|
|
|
{
|
|
|
|
-ms-transform: scale(4);
|
|
|
|
-moz-transform: scale(4);
|
|
|
|
-webkit-transform: scale(4);
|
|
|
|
-o-transform: scale(4);
|
|
|
|
transform: scale(4);
|
2020-07-04 10:14:58 +00:00
|
|
|
padding: 20px;
|
|
|
|
margin: 30px 40px;
|
2020-07-04 10:12:14 +00:00
|
|
|
}
|
2019-09-01 17:40:49 +00:00
|
|
|
}
|