2019-08-10 18:22:28 +00:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--main-bg-color: #282c37;
|
2020-05-28 13:06:07 +00:00
|
|
|
--link-bg-color: #282c37;
|
2020-05-28 16:16:11 +00:00
|
|
|
--dropdown-fg-color: #dddddd;
|
2019-08-25 11:58:28 +00:00
|
|
|
--dropdown-bg-color: #111;
|
|
|
|
--dropdown-bg-color-hover: #333;
|
2020-05-28 16:26:53 +00:00
|
|
|
--dropdown-fg-color-hover: #dddddd;
|
2019-08-22 09:09:02 +00:00
|
|
|
--main-bg-color-reply: #212c37;
|
2019-08-25 18:23:12 +00:00
|
|
|
--main-bg-color-dm: #222;
|
2019-08-11 20:38:10 +00:00
|
|
|
--main-bg-color-report: #221c27;
|
2019-08-10 20:33:35 +00:00
|
|
|
--main-header-color-roles: #282237;
|
2019-08-11 13:02:36 +00:00
|
|
|
--main-fg-color: #dddddd;
|
|
|
|
--main-link-color: #999;
|
|
|
|
--main-visited-color: #888;
|
2019-08-10 18:22:28 +00:00
|
|
|
--border-color: #505050;
|
2020-05-28 13:27:25 +00:00
|
|
|
--border-width: 2px;
|
2019-08-10 18:22:28 +00:00
|
|
|
--font-size-header: 18px;
|
2020-06-21 17:07:34 +00:00
|
|
|
--font-size-header-mobile: 32px;
|
2019-08-10 18:22:28 +00:00
|
|
|
--font-color-header: #ccc;
|
2019-10-15 09:03:23 +00:00
|
|
|
--font-size-button-mobile: 34px;
|
2019-08-27 10:27:45 +00:00
|
|
|
--font-size: 30px;
|
2019-10-14 16:13:31 +00:00
|
|
|
--font-size2: 24px;
|
2019-10-15 09:03:23 +00:00
|
|
|
--font-size3: 38px;
|
2020-05-02 19:24:17 +00:00
|
|
|
--font-size4: 22px;
|
|
|
|
--font-size5: 20px;
|
2020-05-28 12:13:59 +00:00
|
|
|
--font-size-pgp-key: 16px;
|
2019-08-11 13:02:36 +00:00
|
|
|
--text-entry-foreground: #ccc;
|
|
|
|
--text-entry-background: #111;
|
2019-09-11 20:04:18 +00:00
|
|
|
--time-color: #aaa;
|
2020-05-31 19:31:31 +00:00
|
|
|
--time-vertical-align: 4px;
|
2019-09-11 20:17:22 +00:00
|
|
|
--button-text: #FFFFFF;
|
|
|
|
--button-background: #999;
|
|
|
|
--button-selected: #666;
|
2019-09-24 09:07:36 +00:00
|
|
|
--button-highlighted: green;
|
2020-06-20 12:44:43 +00:00
|
|
|
--button-fg-highlighted: #FFFFFF;
|
2019-09-24 09:07:36 +00:00
|
|
|
--button-selected-highlighted: darkgreen;
|
|
|
|
--button-approve: darkgreen;
|
|
|
|
--button-deny: darkred;
|
2019-09-24 10:48:57 +00:00
|
|
|
--button-height: 10px;
|
|
|
|
--button-height-padding-mobile: 20px;
|
|
|
|
--button-height-padding: 10px;
|
2020-06-11 13:12:59 +00:00
|
|
|
--image-corners: 10%,
|
2019-09-28 11:29:42 +00:00
|
|
|
--gallery-border: #ccc;
|
|
|
|
--gallery-hover: #777;
|
2019-11-28 11:02:59 +00:00
|
|
|
--gallery-text-color: #ccc;
|
2019-11-28 10:18:23 +00:00
|
|
|
--gallery-font-size: 22px;
|
2019-11-28 11:02:59 +00:00
|
|
|
--gallery-font-size-mobile: 35px;
|
2019-10-02 12:09:57 +00:00
|
|
|
--button-corner-radius: 15px;
|
2019-10-02 12:20:01 +00:00
|
|
|
--timeline-border-radius: 30px;
|
2020-06-07 12:38:44 +00:00
|
|
|
--icons-side: right;
|
2019-08-10 18:22:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-25 11:33:37 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Bedstead';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
2020-07-12 19:36:29 +00:00
|
|
|
font-display: block;
|
2020-05-25 11:33:37 +00:00
|
|
|
src: url('./fonts/bedstead.otf') format('opentype');
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
body, html {
|
2019-08-10 18:22:28 +00:00
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
|
2019-07-22 20:01:46 +00:00
|
|
|
height: 100%;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-24 11:03:56 +00:00
|
|
|
max-width: 80%;
|
2019-08-27 10:27:45 +00:00
|
|
|
min-width: 950px;
|
2019-07-24 11:03:56 +00:00
|
|
|
margin: 0 auto;
|
2019-08-10 18:22:28 +00:00
|
|
|
font-size: var(--font-size);
|
|
|
|
}
|
|
|
|
|
|
|
|
a, u {
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited{
|
|
|
|
color: var(--main-visited-color);
|
2020-05-28 13:06:07 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-08-10 18:22:28 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: var(--main-link-color);
|
2020-05-28 13:06:07 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-08-10 18:22:28 +00:00
|
|
|
font-weight: bold;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 12:02:28 +00:00
|
|
|
.timeline-banner {
|
2020-05-29 11:18:15 +00:00
|
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5)), url("banner.png");
|
2019-07-24 12:02:28 +00:00
|
|
|
height: 10%;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.hero-image {
|
2020-05-29 11:18:15 +00:00
|
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5)), url("image.png");
|
2019-07-22 20:01:46 +00:00
|
|
|
height: 50%;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 20:23:27 +00:00
|
|
|
.rssfeed img {
|
|
|
|
width: 5%;
|
2020-02-27 20:27:44 +00:00
|
|
|
float: right;
|
2020-02-27 20:23:27 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 10:50:39 +00:00
|
|
|
.ssbaddr {
|
2020-05-28 12:10:53 +00:00
|
|
|
font-size: var(--font-size-pgp-key);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-02-27 10:50:39 +00:00
|
|
|
}
|
|
|
|
|
2020-02-25 21:08:55 +00:00
|
|
|
.about {
|
|
|
|
font-size: var(--font-size5);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-02-25 21:08:55 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blogreplies {
|
|
|
|
color: var(--button-highlighted);
|
|
|
|
font-size: var(--font-size2);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-02-25 21:08:55 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonprev {
|
|
|
|
float: left;
|
|
|
|
width: 10%;
|
|
|
|
-ms-transform: translateY(30%);
|
|
|
|
transform: translateY(30%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonnext {
|
|
|
|
float: right;
|
|
|
|
width: 10%;
|
|
|
|
-ms-transform: translateY(30%) scaleX(-1);
|
|
|
|
transform: translateY(30%) scaleX(-1);
|
|
|
|
}
|
|
|
|
|
2019-10-03 17:21:11 +00:00
|
|
|
.hero-image img {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2019-08-07 19:22:56 +00:00
|
|
|
.new-post-text {
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size2);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-08-07 19:22:56 +00:00
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
2019-08-11 11:25:27 +00:00
|
|
|
.new-post-subtext {
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-08-11 11:25:27 +00:00
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
2019-07-29 18:48:23 +00:00
|
|
|
.highlight {
|
|
|
|
width: 2%;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.roles {
|
2019-07-22 20:01:46 +00:00
|
|
|
text-align: center;
|
|
|
|
left: 35%;
|
2019-08-10 20:33:35 +00:00
|
|
|
background-color: var(--main-header-color-roles);
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.roles-inner {
|
2019-07-22 20:01:46 +00:00
|
|
|
padding: 10px 25px;
|
2019-08-10 20:33:35 +00:00
|
|
|
background-color: var(--main-bg-color);
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 16:18:00 +00:00
|
|
|
.hero-text img.emoji {
|
|
|
|
width: 50px;
|
2019-08-09 18:48:40 +00:00
|
|
|
padding: 0 0;
|
|
|
|
margin: 0 0;
|
2019-08-09 17:42:11 +00:00
|
|
|
float: none;
|
2019-08-09 16:18:00 +00:00
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.hero-text button {
|
2019-07-22 20:01:46 +00:00
|
|
|
border: none;
|
|
|
|
outline: 0;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px 25px;
|
|
|
|
color: black;
|
|
|
|
background-color: #ddd;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero-text button:hover {
|
2019-09-11 20:57:07 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 10:21:02 +00:00
|
|
|
.timelineIcon {
|
|
|
|
width: 10%;
|
2019-07-29 20:56:07 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 18:48:23 +00:00
|
|
|
.followRequestHandle {
|
|
|
|
padding: 0px 20px;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.button span {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 20:01:46 +00:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
transition: 0.5s;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button span:after {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 20:01:46 +00:00
|
|
|
content: '\00bb';
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0;
|
|
|
|
right: -20px;
|
|
|
|
transition: 0.5s;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button:hover span {
|
2019-07-22 20:01:46 +00:00
|
|
|
padding-right: 25px;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button:hover span:after {
|
2019-07-22 20:01:46 +00:00
|
|
|
opacity: 1;
|
|
|
|
right: 0;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttonselected span {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 20:01:46 +00:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
transition: 0.5s;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttonselected span:after {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 20:01:46 +00:00
|
|
|
content: '\00bb';
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0;
|
|
|
|
right: -20px;
|
|
|
|
transition: 0.5s;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttonselected:hover span {
|
2019-07-22 20:01:46 +00:00
|
|
|
padding-right: 25px;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttonselected:hover span:after {
|
2019-07-22 20:01:46 +00:00
|
|
|
opacity: 1;
|
|
|
|
right: 0;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2020-05-28 13:27:25 +00:00
|
|
|
border: var(--border-width) solid var(--border-color);
|
2019-08-10 18:22:28 +00:00
|
|
|
background-color: var(--main-bg-color);
|
2019-10-02 12:20:01 +00:00
|
|
|
border-radius: var(--timeline-border-radius);
|
|
|
|
padding: 20px;
|
2019-10-01 21:02:32 +00:00
|
|
|
margin: 10px;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-08-20 15:38:24 +00:00
|
|
|
.media {
|
2019-08-20 15:45:56 +00:00
|
|
|
width: 80%;
|
2019-08-20 15:38:24 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
2019-08-21 13:17:30 +00:00
|
|
|
.message {
|
2019-08-21 13:54:33 +00:00
|
|
|
margin-left: 7%;
|
|
|
|
width: 90%;
|
2019-08-21 13:17:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 19:24:17 +00:00
|
|
|
.gitpatch {
|
|
|
|
width: 90%;
|
2020-05-25 11:33:37 +00:00
|
|
|
font-family: 'monospace';
|
2020-05-02 19:24:17 +00:00
|
|
|
}
|
|
|
|
|
2019-08-10 15:33:18 +00:00
|
|
|
.container p.administeredby {
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-08-10 15:33:18 +00:00
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.container::after {
|
|
|
|
content: "";
|
|
|
|
clear: both;
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
2019-08-19 19:10:55 +00:00
|
|
|
.searchEmoji {
|
2019-10-02 10:28:17 +00:00
|
|
|
vertical-align: middle;
|
2019-08-19 19:10:55 +00:00
|
|
|
float: none;
|
|
|
|
width: 80px;
|
2019-08-19 19:24:14 +00:00
|
|
|
margin: 0px 10px;
|
|
|
|
padding: 0px 0px;
|
2019-08-19 19:10:55 +00:00
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
|
2019-08-09 16:18:00 +00:00
|
|
|
.container img.emoji {
|
2019-08-09 17:42:11 +00:00
|
|
|
float: none;
|
2019-08-09 18:48:40 +00:00
|
|
|
width: 50px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
border-radius: 0px;
|
2019-10-02 10:19:15 +00:00
|
|
|
vertical-align: middle;
|
2019-08-09 16:18:00 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 12:33:32 +00:00
|
|
|
.hero-text img.emojiprofile {
|
2019-09-23 12:19:00 +00:00
|
|
|
float: none;
|
2019-09-23 12:46:19 +00:00
|
|
|
width: 50px;
|
2019-09-23 12:19:00 +00:00
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
border-radius: 0px;
|
2019-10-02 10:28:17 +00:00
|
|
|
vertical-align: middle;
|
2019-09-23 12:19:00 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 12:47:42 +00:00
|
|
|
.containericons {
|
2019-08-27 10:27:45 +00:00
|
|
|
padding: 0px 0px;
|
|
|
|
margin: 0px 0px;
|
2019-07-30 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
2019-08-13 10:59:38 +00:00
|
|
|
.replyingto {
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
}
|
|
|
|
|
2019-12-17 21:08:53 +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 21:08:53 +00:00
|
|
|
color: var(--main-link-color);
|
2020-05-28 13:06:07 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-12-17 21:08:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pgp {
|
2020-05-28 12:08:35 +00:00
|
|
|
font-size: var(--font-size-pgp-key);
|
2019-12-17 21:08:53 +00:00
|
|
|
color: var(--main-link-color);
|
2020-05-28 13:06:07 +00:00
|
|
|
background: var(--link-bg-color);
|
2019-12-17 21:08:53 +00:00
|
|
|
font-family: 'monospace';
|
|
|
|
}
|
|
|
|
|
2019-08-22 09:36:16 +00:00
|
|
|
.container img.announceOrReply {
|
|
|
|
float: none;
|
|
|
|
width: 30px;
|
|
|
|
margin: 0 0;
|
2019-08-25 18:03:19 +00:00
|
|
|
padding: 0 0;
|
|
|
|
border-radius: 0;
|
2019-10-02 10:28:17 +00:00
|
|
|
vertical-align: middle;
|
2019-08-25 18:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container img.DMicon {
|
|
|
|
float: none;
|
2019-08-25 18:08:25 +00:00
|
|
|
width: 40px;
|
2019-08-25 18:03:19 +00:00
|
|
|
margin: 0 0;
|
2019-08-22 09:36:16 +00:00
|
|
|
padding: 0 0;
|
|
|
|
border-radius: 0;
|
2019-10-02 10:28:17 +00:00
|
|
|
vertical-align: middle;
|
2019-08-22 09:23:04 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 22:34:04 +00:00
|
|
|
.darker {
|
2019-08-22 09:09:02 +00:00
|
|
|
background-color: var(--main-bg-color-reply);
|
2019-07-30 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
2019-08-25 18:21:24 +00:00
|
|
|
.dm {
|
|
|
|
background-color: var(--main-bg-color-dm);
|
|
|
|
}
|
|
|
|
|
2019-08-11 20:38:10 +00:00
|
|
|
.report {
|
|
|
|
border-color: #255;
|
|
|
|
background-color: var(--main-bg-color-report);
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.container img.attachment {
|
2020-01-03 10:23:42 +00:00
|
|
|
max-width: 120%;
|
2020-01-03 09:52:23 +00:00
|
|
|
margin-left: 5%;
|
2020-01-03 10:23:42 +00:00
|
|
|
width: 120%;
|
2020-01-03 10:35:53 +00:00
|
|
|
padding-bottom: 3%;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
.container img.right {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2019-08-22 11:31:19 +00:00
|
|
|
margin-left: 0px;
|
2019-07-22 17:42:39 +00:00
|
|
|
margin-right:0;
|
2019-08-22 11:31:19 +00:00
|
|
|
padding: 0 0;
|
|
|
|
margin: 0 0;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
2019-07-30 12:47:42 +00:00
|
|
|
.containericons img.right {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2019-07-30 12:47:42 +00:00
|
|
|
margin-left: 20px;
|
2019-08-21 13:54:33 +00:00
|
|
|
margin-right: 0;
|
2019-07-30 12:47:42 +00:00
|
|
|
}
|
2019-07-22 17:42:39 +00:00
|
|
|
|
|
|
|
.post-title {
|
|
|
|
margin-top: 0px;
|
2019-07-24 09:53:07 +00:00
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-title {
|
|
|
|
margin-top: 0px;
|
2019-08-10 20:33:35 +00:00
|
|
|
color: var(--main-fg-color);
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
2019-07-22 20:01:46 +00:00
|
|
|
|
|
|
|
.skill-title {
|
|
|
|
margin-left: 25%;
|
|
|
|
text-align: left;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size2);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 20:01:46 +00:00
|
|
|
font-weight: bold;
|
2019-09-11 20:17:22 +00:00
|
|
|
color: var(--button-selected);
|
2019-07-22 20:01:46 +00:00
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#myProgress {
|
|
|
|
float: left;
|
|
|
|
width: 70%;
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#myBar {
|
|
|
|
float: left;
|
|
|
|
width: 10%;
|
|
|
|
height: 30px;
|
2019-09-11 20:17:22 +00:00
|
|
|
background-color: var(--button-background);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-22 20:01:46 +00:00
|
|
|
}
|
2019-07-25 21:39:09 +00:00
|
|
|
|
2019-07-28 11:35:57 +00:00
|
|
|
input[type=number] {
|
|
|
|
width: 10%;
|
|
|
|
padding: 12px;
|
|
|
|
border: 1px solid #ccc;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-07-28 11:35:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
resize: vertical;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-28 11:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.labels {
|
2019-10-10 10:44:10 +00:00
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-10-10 10:44:10 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 20:53:08 +00:00
|
|
|
.transparent {
|
|
|
|
color: rgba(0, 0, 0, 0.0);
|
|
|
|
font-size: 0px;
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-27 20:59:38 +00:00
|
|
|
line-height: 0;
|
2019-11-27 20:53:08 +00:00
|
|
|
}
|
|
|
|
|
2019-10-10 11:22:16 +00:00
|
|
|
.labelsright {
|
|
|
|
float: right;
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-10-10 11:22:16 +00:00
|
|
|
}
|
|
|
|
|
2019-10-10 10:44:10 +00:00
|
|
|
input[type=date] {
|
|
|
|
background-color: var(--main-bg-color-reply);
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-10-10 10:44:10 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=time] {
|
|
|
|
background-color: var(--main-bg-color-reply);
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-10-10 10:44:10 +00:00
|
|
|
border: none;
|
2019-07-28 11:35:57 +00:00
|
|
|
}
|
|
|
|
|
2019-07-25 21:39:09 +00:00
|
|
|
input[type=submit] {
|
2019-09-11 20:53:43 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-08-13 10:04:18 +00:00
|
|
|
margin: 10px 10px;
|
2019-08-19 20:27:22 +00:00
|
|
|
padding: 12px 10px;
|
2019-07-25 21:39:09 +00:00
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-07-25 21:39:09 +00:00
|
|
|
cursor: pointer;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-08-19 20:27:22 +00:00
|
|
|
width: 120px;
|
2019-07-25 21:39:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 15:52:59 +00:00
|
|
|
.loginButton {
|
|
|
|
background-color: #2965;
|
|
|
|
color: #000;
|
2019-08-25 12:56:18 +00:00
|
|
|
float: none;
|
2019-07-28 15:52:59 +00:00
|
|
|
margin: 0px 10px;
|
|
|
|
padding: 12px 40px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-07-28 15:52:59 +00:00
|
|
|
cursor: pointer;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size2);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-07-28 15:52:59 +00:00
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2019-07-25 21:39:09 +00:00
|
|
|
input[type=submit]:hover {
|
2019-09-11 20:53:43 +00:00
|
|
|
background-color: var(--button-background);
|
2019-07-25 21:39:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.vertical-center {
|
|
|
|
max-width: 90%;
|
|
|
|
min-width: 600px;
|
|
|
|
margin: 0 auto;
|
2019-07-26 14:19:37 +00:00
|
|
|
padding: 5% 0px;
|
2019-07-25 21:39:09 +00:00
|
|
|
}
|
2019-07-26 10:30:13 +00:00
|
|
|
|
|
|
|
/* The container <div> - needed to position the dropdown content */
|
|
|
|
.dropdown {
|
2019-07-28 12:04:32 +00:00
|
|
|
margin: 10px auto;
|
2019-07-26 12:26:41 +00:00
|
|
|
padding: 0px 14px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown img {
|
|
|
|
opacity: 1.0;
|
2019-07-26 16:30:00 +00:00
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
2019-07-26 12:26:41 +00:00
|
|
|
padding: 0px 16px;
|
|
|
|
-ms-transform: translateY(-10%);
|
|
|
|
transform: translateY(-10%);
|
|
|
|
}
|
|
|
|
|
2019-08-25 11:38:38 +00:00
|
|
|
.timeline-avatar {
|
2019-07-28 19:54:05 +00:00
|
|
|
margin: 10px auto;
|
|
|
|
padding: 0px 0px;
|
|
|
|
}
|
|
|
|
|
2019-09-24 11:15:29 +00:00
|
|
|
.timeline-avatar-reply {
|
|
|
|
padding: 0px 0px;
|
2019-09-24 11:27:23 +00:00
|
|
|
width: 80%;
|
2019-09-24 11:15:29 +00:00
|
|
|
}
|
|
|
|
|
2019-08-28 10:34:18 +00:00
|
|
|
.search-result-text {
|
2019-08-28 11:02:02 +00:00
|
|
|
font-size: var(--font-size);
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-08-28 10:19:48 +00:00
|
|
|
}
|
2019-08-28 11:02:02 +00:00
|
|
|
|
2019-08-28 10:19:48 +00:00
|
|
|
.search-result img {
|
2019-08-28 10:34:18 +00:00
|
|
|
width: 7%;
|
|
|
|
padding: 0px 30px;
|
2019-08-28 10:19:48 +00:00
|
|
|
}
|
|
|
|
|
2019-07-26 10:30:13 +00:00
|
|
|
/* Dropdown Content (Hidden by Default) */
|
|
|
|
.dropdown-content {
|
2019-07-26 12:26:41 +00:00
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2019-08-25 11:58:28 +00:00
|
|
|
background-color: var(--dropdown-bg-color);
|
2019-09-04 14:09:54 +00:00
|
|
|
min-width: 600px;
|
2019-07-26 12:26:41 +00:00
|
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
|
|
z-index: 1;
|
2019-07-26 10:30:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Links inside the dropdown */
|
|
|
|
.dropdown-content a {
|
2020-05-28 16:16:11 +00:00
|
|
|
background-color: var(--dropdown-bg-color);
|
|
|
|
color: var(--dropdown-fg-color);
|
2019-07-26 12:26:41 +00:00
|
|
|
padding: 12px 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-content img {
|
2019-07-26 16:30:00 +00:00
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
2019-07-26 12:26:41 +00:00
|
|
|
padding: 0px 0px;
|
2019-07-26 10:30:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Change color of dropdown links on hover */
|
2020-05-28 16:26:53 +00:00
|
|
|
.dropdown-content a:hover {
|
|
|
|
color: var(--dropdown-fg-color-hover);
|
|
|
|
background-color: var(--dropdown-bg-color-hover);
|
|
|
|
}
|
2019-07-26 10:30:13 +00:00
|
|
|
|
|
|
|
/* Show the dropdown menu on hover */
|
2019-08-24 18:00:15 +00:00
|
|
|
.show {display: block;}
|
2019-07-26 10:30:13 +00:00
|
|
|
|
2019-08-09 08:46:38 +00:00
|
|
|
.slider {
|
2019-09-04 12:13:05 +00:00
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 57%;
|
|
|
|
height: 25px;
|
|
|
|
background: #d3d3d3;
|
|
|
|
outline: none;
|
|
|
|
opacity: 0.7;
|
|
|
|
-webkit-transition: .2s;
|
|
|
|
transition: opacity .2s;
|
|
|
|
float: right;
|
|
|
|
margin: 5px 0;
|
|
|
|
padding: 12px 0;
|
2019-08-09 08:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider:hover {
|
2019-09-04 12:13:05 +00:00
|
|
|
opacity: 1;
|
2019-08-09 08:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider::-moz-range-thumb {
|
2019-09-04 12:13:05 +00:00
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
background: var(--main-bg-color);
|
|
|
|
cursor: pointer;
|
2019-08-09 08:46:38 +00:00
|
|
|
}
|
2019-08-25 13:10:58 +00:00
|
|
|
|
|
|
|
.dropbtn {
|
2019-09-04 14:09:54 +00:00
|
|
|
margin: 3%;
|
2019-08-25 13:13:41 +00:00
|
|
|
padding: 0px 14px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropbtn img {
|
|
|
|
opacity: 1.0;
|
2019-09-04 14:09:54 +00:00
|
|
|
width: 3%;
|
|
|
|
height: 3%;
|
|
|
|
min-width: 40px;
|
2019-11-26 12:45:47 +00:00
|
|
|
-ms-transform: translateY(10%);
|
|
|
|
transform: translateY(10%);
|
2019-08-25 13:10:58 +00:00
|
|
|
}
|
2019-08-27 10:27:45 +00:00
|
|
|
|
2019-09-28 11:29:42 +00:00
|
|
|
div.gallery:hover {
|
2019-09-28 14:27:18 +00:00
|
|
|
border: 1px solid var(--gallery-hover);
|
2019-09-28 11:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.gallery img {
|
2019-09-28 14:27:18 +00:00
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2019-09-28 11:29:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 11:08:27 +00:00
|
|
|
.invisible {
|
|
|
|
color: transparent;
|
|
|
|
font-size: 0;
|
2020-05-25 12:28:06 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-10-01 11:08:27 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 10:54:01 +00:00
|
|
|
.gallerytext {
|
|
|
|
text-decoration: none;
|
2020-06-25 17:33:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li { list-style:none;}
|
|
|
|
.msgscope-collapse { position: relative; }
|
|
|
|
.nav { width: 150px; }
|
|
|
|
/***********BUTTON CODE ******************************************************/
|
|
|
|
|
|
|
|
a, button, input:focus, input[type='button'], input[type='reset'], input[type='submit'], textarea:focus, .button {
|
|
|
|
-webkit-transition: all 0.1s ease-in-out;
|
|
|
|
-moz-transition: all 0.1s ease-in-out;
|
|
|
|
-ms-transition: all 0.1s ease-in-out;
|
|
|
|
-o-transition: all 0.1s ease-in-out;
|
|
|
|
transition: all 0.1s ease-in-out;
|
2020-06-25 21:57:23 +00:00
|
|
|
text-decoration: none;
|
2020-06-25 17:33:26 +00:00
|
|
|
}
|
|
|
|
.button-msgScope {
|
|
|
|
display:flex;
|
|
|
|
flex-direction:row;
|
|
|
|
justify-content:center;
|
|
|
|
width:100%;
|
|
|
|
min-height:100%;
|
|
|
|
}
|
|
|
|
.button-msgScope button, .button-msgScope div.lined-thin {
|
|
|
|
align-self:center;
|
|
|
|
background:transparent;
|
|
|
|
padding:1rem 1rem;
|
|
|
|
margin:0 1rem;
|
|
|
|
transition:all .5s ease;
|
2020-06-25 18:14:54 +00:00
|
|
|
color:var(--dropdown-fg-color);
|
2020-06-25 17:33:26 +00:00
|
|
|
font-size:2rem;
|
|
|
|
letter-spacing:1px;
|
|
|
|
outline:none;
|
2020-06-25 20:01:18 +00:00
|
|
|
}
|
2020-06-25 17:33:26 +00:00
|
|
|
.btn {
|
|
|
|
margin: -3px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
aside .toggle-msgScope input[type='checkbox'] {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-msgScope {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: margin 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
|
|
|
|
line-height: 2rem;
|
|
|
|
font-size: 2.5rem;
|
|
|
|
}
|
|
|
|
.toggle-msgScope div[class*='toggle-inside'] {
|
|
|
|
overflow: hidden;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
aside .toggle-msgScope input[type='checkbox'] {
|
|
|
|
float:right;
|
|
|
|
}
|
|
|
|
aside .toggle-inside li {
|
|
|
|
padding-left: 20px;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: -15px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2020-06-25 20:01:18 +00:00
|
|
|
.nav li:hover {
|
|
|
|
color: var(--dropdown-fg-color-hover);
|
|
|
|
background-color: var(--dropdown-bg-color-hover);
|
2020-06-25 17:33:26 +00:00
|
|
|
}
|
|
|
|
.nav .toggle-msgScope {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
#msgscope label div {
|
|
|
|
-webkit-transition: all 0.1s ease-in-out;
|
|
|
|
-moz-transition: all 0.1s ease-in-out;
|
|
|
|
-ms-transition: all 0.1s ease-in-out;
|
|
|
|
-o-transition: all 0.1s ease-in-out;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
2020-06-25 18:14:54 +00:00
|
|
|
background-color: var(--dropdown-bg-color);
|
|
|
|
color: var(--dropdown-fg-color);
|
2020-06-25 17:33:26 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
background-image: none;
|
|
|
|
white-space: nowrap;
|
2020-06-25 20:01:18 +00:00
|
|
|
font-size: 0px;
|
2020-06-25 17:33:26 +00:00
|
|
|
line-height: 1.42857143;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
[id*='toggle'] .container, [class*='toggle'] .container {
|
|
|
|
transition: margin 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
|
|
|
|
}
|
|
|
|
[id*='toggle'] {
|
|
|
|
visibility: hidden;
|
|
|
|
appearance:none;
|
|
|
|
cursor:pointer;
|
|
|
|
left:-100%;
|
|
|
|
top:-100%;
|
|
|
|
}
|
|
|
|
[id*='toggle'] + label {
|
|
|
|
cursor:pointer;
|
|
|
|
text-align: left;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
cursor: pointer;
|
|
|
|
transition:all 500ms ease;
|
|
|
|
}
|
|
|
|
[id*='toggle'toggle'toggle'] + label div {
|
|
|
|
transition:all 500ms ease;
|
|
|
|
}
|
|
|
|
[id*='toggle'toggle'toggle'] + label div:after {
|
2020-06-25 21:57:23 +00:00
|
|
|
content:'\002b'; /* open */
|
2020-06-25 17:33:26 +00:00
|
|
|
text-align: left;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
[id*='toggle'toggle'toggle']:checked + label div:after {
|
2020-06-25 21:57:23 +00:00
|
|
|
content:'\2212'; /* close */
|
2020-06-25 17:33:26 +00:00
|
|
|
text-align: left;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
#msgscope label div {
|
|
|
|
-webkit-transition: all 0.1s ease-in-out;
|
|
|
|
-moz-transition: all 0.1s ease-in-out;
|
|
|
|
-ms-transition: all 0.1s ease-in-out;
|
|
|
|
-o-transition: all 0.1s ease-in-out;
|
|
|
|
transition: all 0.1s ease-in-out;
|
2020-06-25 21:57:23 +00:00
|
|
|
width: 170px;
|
2020-06-25 17:33:26 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
2020-06-25 20:01:18 +00:00
|
|
|
text-align: left;
|
2020-06-25 17:33:26 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
background-image: none;
|
|
|
|
white-space: nowrap;
|
2020-06-25 20:01:18 +00:00
|
|
|
font-size: 0px;
|
2020-06-25 17:33:26 +00:00
|
|
|
line-height: 1.42857143;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
[id*='toggle'] .container, [class*='toggle'] .container {
|
|
|
|
transition: margin 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
|
|
|
|
}
|
|
|
|
[id*='toggle'] {
|
|
|
|
visibility: hidden;
|
|
|
|
appearance:none;
|
|
|
|
cursor:pointer;
|
|
|
|
left:-100%;
|
|
|
|
top:-100%;
|
|
|
|
}
|
|
|
|
[id*='toggle'] + label {
|
|
|
|
cursor:pointer;
|
|
|
|
text-align: left;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
cursor: pointer;
|
|
|
|
transition:all 500ms ease;
|
|
|
|
}
|
|
|
|
[id*='toggle'] + label div {
|
|
|
|
transition:all 500ms ease;
|
|
|
|
}
|
|
|
|
[id*='toggle'] + label div:after {
|
|
|
|
content:'\002b'; /* open */
|
|
|
|
text-align: left;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
[id*='toggle']:checked + label div:after {
|
|
|
|
content:'\2212'; /* close */
|
|
|
|
text-align: left;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav [id*='toggle'] + label div:after {
|
|
|
|
content:' '; /* open */
|
|
|
|
}
|
|
|
|
.nav [id*='toggle']:checked + label div:after {
|
|
|
|
content:' '; /* close */
|
|
|
|
}
|
|
|
|
|
|
|
|
[id*='toggle']:checked ~ .container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
[id*='toggle']:checked ~ .toggle-inside {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.toggle-msgScope div[class*='toggle-inside'] {
|
|
|
|
overflow: hidden;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: none;
|
2019-11-28 10:54:01 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 10:27:45 +00:00
|
|
|
@media screen and (min-width: 400px) {
|
2019-09-04 12:13:05 +00:00
|
|
|
body, html {
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size4);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
2019-11-30 11:14:30 +00:00
|
|
|
.galleryContainer {
|
2020-05-25 15:53:38 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
background-color: var(--main-bg-color);
|
2019-11-30 11:14:30 +00:00
|
|
|
}
|
2019-11-28 10:18:23 +00:00
|
|
|
div.gallerytext {
|
2020-05-25 15:53:38 +00:00
|
|
|
color: var(--gallery-text-color);
|
|
|
|
font-size: var(--gallery-font-size);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-28 10:18:23 +00:00
|
|
|
}
|
2019-09-28 12:06:20 +00:00
|
|
|
div.gallery {
|
2020-05-25 15:53:38 +00:00
|
|
|
margin: 5px;
|
|
|
|
border: 1px solid var(--gallery-border);
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
object-fit: scale-down;
|
2019-09-28 12:06:20 +00:00
|
|
|
}
|
2019-09-28 11:29:42 +00:00
|
|
|
div.imagedesc {
|
2020-05-25 15:53:38 +00:00
|
|
|
padding: 22px;
|
|
|
|
text-align: center;
|
2019-09-28 11:29:42 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.container img {
|
|
|
|
float: left;
|
|
|
|
max-width: 400px;
|
|
|
|
width: 5%;
|
|
|
|
padding: 0px 7px;
|
|
|
|
margin-right: 20px;
|
2020-06-11 13:12:59 +00:00
|
|
|
border-radius: var(--image-corners);
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
2019-09-04 12:46:02 +00:00
|
|
|
.container img.emojisearch {
|
2020-06-26 14:00:53 +00:00
|
|
|
width: 15%;
|
2019-11-26 13:56:54 +00:00
|
|
|
float: right;
|
2019-09-04 12:46:02 +00:00
|
|
|
}
|
2019-10-10 11:10:18 +00:00
|
|
|
.container img.emojicalendar {
|
|
|
|
float: left;
|
|
|
|
max-width: 400px;
|
|
|
|
width: 8%;
|
2019-10-10 11:22:16 +00:00
|
|
|
-ms-transform: translateY(-25%);
|
2020-05-02 19:24:17 +00:00
|
|
|
transform: translateY(-25%);
|
2019-10-10 11:10:18 +00:00
|
|
|
}
|
2019-09-28 20:15:40 +00:00
|
|
|
.container img.timelineicon {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2020-05-25 15:53:38 +00:00
|
|
|
margin-left: 0px;
|
|
|
|
margin-right:0;
|
|
|
|
padding: 0 0;
|
|
|
|
margin: 0 0;
|
|
|
|
width: 50px;
|
2019-09-28 20:15:40 +00:00
|
|
|
}
|
2019-09-30 08:42:37 +00:00
|
|
|
.container img.emojiheader {
|
2020-05-25 15:53:38 +00:00
|
|
|
float: none;
|
|
|
|
width: 25px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
vertical-align: middle;
|
2019-09-30 08:42:37 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.containericons img {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2019-09-04 12:13:05 +00:00
|
|
|
max-width: 200px;
|
|
|
|
width: 3%;
|
|
|
|
margin: 0px 1%;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
2019-11-28 12:25:10 +00:00
|
|
|
div.mediaicons img {
|
2019-11-28 12:19:46 +00:00
|
|
|
float: right;
|
|
|
|
max-width: 200px;
|
2019-11-28 17:13:58 +00:00
|
|
|
width: 6%;
|
2019-11-28 12:19:46 +00:00
|
|
|
margin: 0px 1%;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
2019-11-28 14:01:29 +00:00
|
|
|
div.mediaavatar img {
|
|
|
|
float: left;
|
|
|
|
max-width: 200px;
|
2019-11-28 17:13:58 +00:00
|
|
|
width: 5%;
|
2019-11-28 14:01:29 +00:00
|
|
|
margin: 0px 1%;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.timeline-avatar img {
|
|
|
|
opacity: 1.0;
|
|
|
|
width: 8%;
|
|
|
|
height: 8%;
|
|
|
|
padding: 0px 0px;
|
|
|
|
-ms-transform: translateY(-10%);
|
|
|
|
transform: translateY(-10%);
|
|
|
|
}
|
2020-02-22 18:09:24 +00:00
|
|
|
.buttonevent {
|
|
|
|
border-radius: var(--button-corner-radius);
|
2020-02-22 18:13:56 +00:00
|
|
|
background-color: var(--button-highlighted);
|
2020-02-22 18:09:24 +00:00
|
|
|
border: none;
|
2020-06-20 12:44:43 +00:00
|
|
|
color: var(--button-fg-highlighted);
|
2020-02-22 18:09:24 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-02-22 18:09:24 +00:00
|
|
|
padding: var(--button-height-padding);
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.button {
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-11 20:17:22 +00:00
|
|
|
background-color: var(--button-background);
|
2019-09-04 12:13:05 +00:00
|
|
|
border: none;
|
2019-09-11 20:17:22 +00:00
|
|
|
color: var(--button-text);
|
2019-09-04 12:13:05 +00:00
|
|
|
text-align: center;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding);
|
2019-09-04 12:13:05 +00:00
|
|
|
width: 10%;
|
|
|
|
max-width: 100px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2019-09-24 08:38:56 +00:00
|
|
|
.buttonhighlighted {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-highlighted);
|
|
|
|
border: none;
|
2020-06-20 12:44:43 +00:00
|
|
|
color: var(--button-fg-highlighted);
|
2020-05-25 15:53:38 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-header);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding);
|
|
|
|
width: 10%;
|
|
|
|
max-width: 100px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
2020-05-02 19:24:17 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.buttonselected {
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-11 20:17:22 +00:00
|
|
|
background-color: var(--button-selected);
|
2019-09-04 12:13:05 +00:00
|
|
|
border: none;
|
2019-09-11 20:17:22 +00:00
|
|
|
color: var(--button-text);
|
2019-09-04 12:13:05 +00:00
|
|
|
text-align: center;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size-header);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding);
|
2019-09-04 12:13:05 +00:00
|
|
|
width: 10%;
|
|
|
|
max-width: 100px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2019-09-24 08:43:30 +00:00
|
|
|
.buttonselectedhighlighted {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-selected-highlighted);
|
|
|
|
border: none;
|
|
|
|
color: var(--button-text);
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-header);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding);
|
|
|
|
width: 10%;
|
|
|
|
max-width: 100px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
2019-09-24 08:43:30 +00:00
|
|
|
}
|
2019-09-24 08:56:35 +00:00
|
|
|
.followApprove {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-approve);
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-header);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 80px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 5px;
|
|
|
|
float: right;
|
2019-09-24 08:56:35 +00:00
|
|
|
}
|
|
|
|
.followDeny {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-deny);
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-header);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 80px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 5px;
|
|
|
|
float: right;
|
2019-09-24 08:56:35 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.pageicon {
|
2019-09-04 14:09:54 +00:00
|
|
|
width: 4%;
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
|
|
|
.time-right {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2019-09-11 20:04:18 +00:00
|
|
|
color: var(--time-color);
|
2020-05-31 19:31:31 +00:00
|
|
|
margin: var(--time-vertical-align) 20px;
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
|
|
|
input[type=text], select, textarea {
|
2019-09-04 14:09:54 +00:00
|
|
|
width: 100%;
|
|
|
|
padding: 12px;
|
|
|
|
border: 1px solid #ccc;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 14:09:54 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
resize: vertical;
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size2);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 14:09:54 +00:00
|
|
|
background-color: var(--main-bg-color-reply);
|
|
|
|
color: var(--main-fg-color);
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
2019-09-04 12:29:46 +00:00
|
|
|
input[type=button], input[type=submit] {
|
2019-09-11 20:53:43 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding);
|
2020-05-25 15:53:38 +00:00
|
|
|
display: inline-block;
|
2019-09-04 12:29:46 +00:00
|
|
|
margin: 15px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 12:29:46 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 12:29:46 +00:00
|
|
|
width: 20%;
|
|
|
|
}
|
2019-11-18 18:25:51 +00:00
|
|
|
.question {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-size: var(--font-size);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-18 18:25:51 +00:00
|
|
|
}
|
2019-11-25 13:34:44 +00:00
|
|
|
.questionresult {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-size: var(--font-size);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-25 13:34:44 +00:00
|
|
|
}
|
2019-11-18 17:46:40 +00:00
|
|
|
input[type=radio] {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-size: var(--font-size);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
width: 32px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 20px;
|
2019-11-18 18:32:03 +00:00
|
|
|
}
|
2019-09-08 19:39:17 +00:00
|
|
|
input.vote[type=submit] {
|
2019-09-11 20:53:43 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-09-08 19:39:17 +00:00
|
|
|
float: left;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding);
|
2019-09-08 19:39:17 +00:00
|
|
|
margin: 15px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-08 19:39:17 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-08 19:39:17 +00:00
|
|
|
width: 20%;
|
|
|
|
}
|
2019-09-04 13:22:22 +00:00
|
|
|
input[type=file] {
|
2019-09-11 20:57:07 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-09-04 13:22:22 +00:00
|
|
|
padding: 20px;
|
|
|
|
margin: 0px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 13:22:22 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 13:22:22 +00:00
|
|
|
width: 96%;
|
|
|
|
}
|
2019-09-04 12:29:46 +00:00
|
|
|
.cancelbtn {
|
2019-09-11 20:57:07 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding);
|
2019-09-04 12:29:46 +00:00
|
|
|
margin: 15px;
|
|
|
|
border: none;
|
2020-05-25 15:53:38 +00:00
|
|
|
display: inline-block;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 12:29:46 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--font-size);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 12:29:46 +00:00
|
|
|
width: 20%;
|
|
|
|
}
|
2019-09-04 13:39:57 +00:00
|
|
|
.scope-desc {
|
2019-10-14 16:13:31 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 13:39:57 +00:00
|
|
|
}
|
2019-09-04 16:46:01 +00:00
|
|
|
.buttonunfollow {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-background);
|
|
|
|
border: none;
|
|
|
|
color: var(--button-text);
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-header);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
float: right;
|
2019-09-04 16:46:01 +00:00
|
|
|
}
|
2019-10-03 14:34:13 +00:00
|
|
|
.license {
|
|
|
|
float: right;
|
|
|
|
margin: 0% 1%;
|
|
|
|
width: 10%;
|
|
|
|
}
|
2019-11-07 10:22:18 +00:00
|
|
|
.donateButton {
|
2020-05-25 15:53:38 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
|
|
|
float: none;
|
|
|
|
margin: 0px 10px;
|
|
|
|
padding: 12px 40px;
|
|
|
|
border: none;
|
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--font-size2);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
opacity: 0.7;
|
2019-11-07 10:22:18 +00:00
|
|
|
}
|
2020-06-21 17:07:34 +00:00
|
|
|
.hero-text {
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2020-06-21 17:40:46 +00:00
|
|
|
width: 70%;
|
2020-06-21 17:07:34 +00:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
color: var(--font-color-header);
|
|
|
|
font-size: var(--font-size-header);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
2020-06-21 16:54:38 +00:00
|
|
|
.hero-text img.qrcode {
|
|
|
|
border-radius: 1%;
|
|
|
|
width: 5%;
|
|
|
|
min-width: 20px;
|
|
|
|
}
|
2020-06-21 21:05:19 +00:00
|
|
|
.hero-text img.title {
|
|
|
|
border-radius: 1%;
|
|
|
|
width: 15%;
|
|
|
|
}
|
2020-06-25 21:57:23 +00:00
|
|
|
#msgscope label img {
|
|
|
|
width: 46px;
|
|
|
|
height: 46px;
|
|
|
|
padding: 0px 0px;
|
|
|
|
}
|
|
|
|
.toggle-msgScope img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
padding: 0px 0px;
|
|
|
|
}
|
|
|
|
.dropdown-menutoggle {
|
|
|
|
-webkit-margin-start: 0px;
|
|
|
|
-webkit-margin-end: 0px;
|
|
|
|
-webkit-padding-start: 40px;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
left: 21px;
|
|
|
|
width: 300%;
|
|
|
|
min-width: 100%;
|
|
|
|
z-index: 1000;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
padding: 0 17px !important;
|
|
|
|
margin: 2px 0 0 !important;
|
|
|
|
font-size: var(--font-size2);
|
|
|
|
text-align: left;
|
|
|
|
list-style: none;
|
|
|
|
color: var(--dropdown-fg-color);
|
|
|
|
background-color: var(--dropdown-bg-color);
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
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-08-27 10:27:45 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 11:55:40 +00:00
|
|
|
@media screen and (min-width: 2200px) {
|
2019-11-30 11:50:05 +00:00
|
|
|
.galleryContainer {
|
2020-05-25 15:53:38 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 33% 33% 33%;
|
|
|
|
grid-column-gap: 5px;
|
|
|
|
background-color: var(--main-bg-color);
|
2019-11-30 11:50:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-27 10:27:45 +00:00
|
|
|
@media screen and (max-width: 1000px) {
|
2019-09-04 12:13:05 +00:00
|
|
|
body, html {
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
2019-11-28 10:18:23 +00:00
|
|
|
div.gallerytext {
|
2020-05-25 15:53:38 +00:00
|
|
|
color: var(--gallery-text-color);
|
|
|
|
font-size: var(--gallery-font-size-mobile);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-28 10:18:23 +00:00
|
|
|
}
|
2019-11-30 11:14:30 +00:00
|
|
|
.galleryContainer {
|
2020-05-25 15:53:38 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto;
|
|
|
|
background-color: var(--main-bg-color);
|
2019-11-30 11:14:30 +00:00
|
|
|
}
|
2019-09-28 12:06:20 +00:00
|
|
|
div.gallery {
|
2020-05-25 15:53:38 +00:00
|
|
|
margin: 5px;
|
|
|
|
border: 1px solid var(--gallery-border);
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
2019-09-28 12:06:20 +00:00
|
|
|
}
|
2019-09-28 11:29:42 +00:00
|
|
|
div.imagedesc {
|
2020-05-25 15:53:38 +00:00
|
|
|
padding: 35px;
|
|
|
|
text-align: center;
|
2019-09-28 11:29:42 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.container img {
|
|
|
|
float: left;
|
|
|
|
max-width: 400px;
|
|
|
|
width: 15%;
|
|
|
|
padding: 0px 7px;
|
|
|
|
margin-right: 20px;
|
2020-06-21 17:40:46 +00:00
|
|
|
border-radius: var(--image-corners);
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
2019-09-04 12:46:02 +00:00
|
|
|
.container img.emojisearch {
|
2020-06-26 14:00:53 +00:00
|
|
|
width: 25%;
|
2019-11-26 13:56:54 +00:00
|
|
|
float: right;
|
2019-09-04 12:46:02 +00:00
|
|
|
}
|
2019-10-10 11:10:18 +00:00
|
|
|
.container img.emojicalendar {
|
|
|
|
float: left;
|
|
|
|
max-width: 400px;
|
|
|
|
width: 12%;
|
2019-10-10 11:22:16 +00:00
|
|
|
-ms-transform: translateY(-25%);
|
2020-05-02 19:24:17 +00:00
|
|
|
transform: translateY(-25%);
|
2019-10-10 11:10:18 +00:00
|
|
|
}
|
2019-09-28 20:27:08 +00:00
|
|
|
.container img.timelineicon {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2020-05-25 15:53:38 +00:00
|
|
|
margin-left: 0px;
|
|
|
|
margin-right:0;
|
|
|
|
padding: 0 0;
|
|
|
|
margin: 0 0;
|
|
|
|
width: 100px;
|
2019-09-28 20:27:08 +00:00
|
|
|
}
|
2019-09-30 08:42:37 +00:00
|
|
|
.container img.emojiheader {
|
2020-05-25 15:53:38 +00:00
|
|
|
float: none;
|
|
|
|
width: 45px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
vertical-align: middle;
|
2019-09-30 08:42:37 +00:00
|
|
|
}
|
2019-11-28 14:01:29 +00:00
|
|
|
div.mediaavatar img {
|
|
|
|
float: left;
|
|
|
|
max-width: 200px;
|
|
|
|
width: 8%;
|
|
|
|
margin: 0px 1%;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
2019-11-28 12:25:10 +00:00
|
|
|
div.mediaicons img {
|
2019-11-28 12:19:46 +00:00
|
|
|
float: right;
|
|
|
|
max-width: 200px;
|
2019-11-28 12:25:10 +00:00
|
|
|
width: 10%;
|
2019-11-28 12:19:46 +00:00
|
|
|
margin: 0px 1%;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.containericons img {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2019-09-04 12:13:05 +00:00
|
|
|
max-width: 200px;
|
|
|
|
width: 7%;
|
|
|
|
margin: 1% 3%;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
|
|
|
.timeline-avatar img {
|
|
|
|
opacity: 1.0;
|
|
|
|
width: 15%;
|
|
|
|
height: 15%;
|
|
|
|
padding: 0px 0px;
|
|
|
|
-ms-transform: translateY(-10%);
|
|
|
|
transform: translateY(-10%);
|
|
|
|
}
|
2020-02-22 18:09:24 +00:00
|
|
|
.buttonevent {
|
|
|
|
border-radius: var(--button-corner-radius);
|
2020-02-22 18:13:56 +00:00
|
|
|
background-color: var(--button-highlighted);
|
2020-02-22 18:09:24 +00:00
|
|
|
border: none;
|
2020-06-20 12:44:43 +00:00
|
|
|
color: var(--button-fg-highlighted);
|
2020-02-22 18:09:24 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-button-mobile);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-02-22 18:09:24 +00:00
|
|
|
padding: var(--button-height-padding-mobile);
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 15px;
|
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.button {
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-11 20:17:22 +00:00
|
|
|
background-color: var(--button-background);
|
2019-09-04 12:13:05 +00:00
|
|
|
border: none;
|
2019-09-11 20:17:22 +00:00
|
|
|
color: var(--button-text);
|
2019-09-04 12:13:05 +00:00
|
|
|
text-align: center;
|
2019-10-15 08:57:45 +00:00
|
|
|
font-size: var(--font-size-button-mobile);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding-mobile);
|
2019-09-04 12:13:05 +00:00
|
|
|
width: 20%;
|
|
|
|
max-width: 400px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 15px;
|
|
|
|
}
|
2019-09-24 08:38:56 +00:00
|
|
|
.buttonhighlighted {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-highlighted);
|
|
|
|
border: none;
|
2020-06-20 12:44:43 +00:00
|
|
|
color: var(--button-fg-highlighted);
|
2020-05-25 15:53:38 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-button-mobile);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding-mobile);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 400px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 15px;
|
2020-05-02 19:24:17 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.buttonselected {
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-11 20:17:22 +00:00
|
|
|
background-color: var(--button-selected);
|
2019-09-04 12:13:05 +00:00
|
|
|
border: none;
|
2019-09-11 20:17:22 +00:00
|
|
|
color: var(--button-text);
|
2019-09-04 12:13:05 +00:00
|
|
|
text-align: center;
|
2019-10-15 08:57:45 +00:00
|
|
|
font-size: var(--font-size-button-mobile);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding-mobile);
|
2019-09-04 12:13:05 +00:00
|
|
|
width: 20%;
|
|
|
|
max-width: 400px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 15px;
|
|
|
|
}
|
2019-09-24 08:43:30 +00:00
|
|
|
.buttonselectedhighlighted {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-selected-highlighted);
|
|
|
|
border: none;
|
|
|
|
color: var(--button-text);
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-button-mobile);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding-mobile);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 400px;
|
|
|
|
min-width: 80px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 15px;
|
2019-09-24 08:43:30 +00:00
|
|
|
}
|
2019-09-24 08:56:35 +00:00
|
|
|
.followApprove {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-approve);
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size3);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding-mobile);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 400px;
|
|
|
|
min-width: 80px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 15px;
|
|
|
|
float: right;
|
2019-09-24 08:56:35 +00:00
|
|
|
}
|
|
|
|
.followDeny {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-deny);
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size3);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding-mobile);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 400px;
|
|
|
|
min-width: 80px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 15px;
|
|
|
|
float: right;
|
2019-09-24 08:56:35 +00:00
|
|
|
}
|
2019-09-04 12:13:05 +00:00
|
|
|
.pageicon {
|
2019-10-16 11:35:25 +00:00
|
|
|
width: 14%;
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
|
|
|
.time-right {
|
2020-06-07 12:38:44 +00:00
|
|
|
float: var(--icons-side);
|
2019-09-11 20:04:18 +00:00
|
|
|
color: var(--time-color);
|
2019-09-04 14:09:54 +00:00
|
|
|
margin: 25px 20px;
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
|
|
|
input[type=text], select, textarea {
|
2019-09-04 14:09:54 +00:00
|
|
|
width: 100%;
|
|
|
|
padding: 12px;
|
|
|
|
border: 1px solid #ccc;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 14:09:54 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
resize: vertical;
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 14:09:54 +00:00
|
|
|
background-color: var(--main-bg-color-reply);
|
|
|
|
color: var(--main-fg-color);
|
2019-09-04 12:13:05 +00:00
|
|
|
}
|
2019-09-04 12:29:46 +00:00
|
|
|
input[type=button], input[type=submit] {
|
2019-09-11 20:53:43 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2020-05-25 15:53:38 +00:00
|
|
|
display: inline-block;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding-mobile);
|
2019-09-04 12:29:46 +00:00
|
|
|
margin: 15px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 12:29:46 +00:00
|
|
|
cursor: pointer;
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 12:29:46 +00:00
|
|
|
width: 20%;
|
|
|
|
}
|
2019-11-18 18:25:51 +00:00
|
|
|
.question {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-size: var(--font-size3);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-18 18:25:51 +00:00
|
|
|
}
|
2019-11-25 13:34:44 +00:00
|
|
|
.questionresult {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-size: var(--font-size3);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-11-25 13:34:44 +00:00
|
|
|
}
|
2019-11-18 17:46:40 +00:00
|
|
|
input[type=radio] {
|
2020-05-25 15:53:38 +00:00
|
|
|
font-size: var(--font-size3);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
height: 90px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 20px;
|
2019-11-18 18:32:03 +00:00
|
|
|
}
|
2019-09-08 19:39:17 +00:00
|
|
|
input.vote[type=submit] {
|
2019-09-11 20:53:43 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-09-08 19:39:17 +00:00
|
|
|
float: left;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding-mobile);
|
2019-09-08 19:39:17 +00:00
|
|
|
margin: 15px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-08 19:39:17 +00:00
|
|
|
cursor: pointer;
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-08 19:39:17 +00:00
|
|
|
width: 20%;
|
|
|
|
}
|
2019-09-04 13:22:22 +00:00
|
|
|
input[type=file] {
|
2019-09-11 20:57:07 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2019-09-04 13:22:22 +00:00
|
|
|
padding: 20px;
|
|
|
|
margin: 0px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 13:22:22 +00:00
|
|
|
cursor: pointer;
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 13:22:22 +00:00
|
|
|
width: 95.4%;
|
|
|
|
}
|
2019-09-04 12:29:46 +00:00
|
|
|
.cancelbtn {
|
2019-09-11 20:57:07 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
2020-05-25 15:53:38 +00:00
|
|
|
display: inline-block;
|
2019-09-24 10:48:57 +00:00
|
|
|
padding: var(--button-height-padding-mobile);
|
2019-09-04 12:29:46 +00:00
|
|
|
margin: 15px;
|
|
|
|
border: none;
|
2019-10-02 12:09:57 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
2019-09-04 12:29:46 +00:00
|
|
|
cursor: pointer;
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 12:29:46 +00:00
|
|
|
width: 20%;
|
|
|
|
}
|
2019-09-04 13:39:57 +00:00
|
|
|
.scope-desc {
|
2019-10-14 16:28:02 +00:00
|
|
|
font-size: var(--font-size3);
|
2020-05-25 15:53:38 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2019-09-04 13:39:57 +00:00
|
|
|
}
|
2019-09-04 16:46:01 +00:00
|
|
|
.buttonunfollow {
|
2020-05-25 15:53:38 +00:00
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
background-color: var(--button-background);
|
|
|
|
border: none;
|
|
|
|
color: var(--button-text);
|
|
|
|
text-align: center;
|
|
|
|
font-size: var(--font-size-button-mobile);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
padding: var(--button-height-padding-mobile);
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
float: right;
|
2019-09-04 16:46:01 +00:00
|
|
|
}
|
2019-10-03 14:34:13 +00:00
|
|
|
.license {
|
|
|
|
float: right;
|
|
|
|
margin: 0% 1%;
|
|
|
|
width: 20%;
|
|
|
|
}
|
2019-11-07 10:22:18 +00:00
|
|
|
.donateButton {
|
2020-05-25 15:53:38 +00:00
|
|
|
background-color: var(--button-background);
|
|
|
|
color: var(--button-text);
|
|
|
|
float: none;
|
|
|
|
margin: 0px 10px;
|
|
|
|
padding: 12px 40px;
|
|
|
|
border: none;
|
|
|
|
border-radius: var(--button-corner-radius);
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--font-size3);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
opacity: 0.7;
|
2019-11-07 10:22:18 +00:00
|
|
|
}
|
2020-06-21 17:07:34 +00:00
|
|
|
.hero-text {
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2020-06-21 17:40:46 +00:00
|
|
|
width: 70%;
|
2020-06-21 17:07:34 +00:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
color: var(--font-color-header);
|
|
|
|
font-size: var(--font-size-header-mobile);
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
2020-06-21 16:54:38 +00:00
|
|
|
.hero-text img.qrcode {
|
|
|
|
border-radius: 1%;
|
|
|
|
width: 15%;
|
|
|
|
min-width: 20px;
|
|
|
|
}
|
2020-06-21 21:05:19 +00:00
|
|
|
.hero-text img.title {
|
|
|
|
border-radius: 1%;
|
|
|
|
width: 25%;
|
|
|
|
}
|
2020-06-25 21:57:23 +00:00
|
|
|
#msgscope label img {
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
padding: 0px 0px;
|
|
|
|
}
|
|
|
|
.toggle-msgScope img {
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2020-06-26 14:16:25 +00:00
|
|
|
margin: -15px 0px;
|
|
|
|
padding: 0px 20px;
|
2020-06-25 21:57:23 +00:00
|
|
|
}
|
|
|
|
.dropdown-menutoggle {
|
2020-07-04 10:15:31 +00:00
|
|
|
-webkit-margin-start: 0px;
|
|
|
|
-webkit-margin-end: 0px;
|
|
|
|
-webkit-padding-start: 40px;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
left: 21px;
|
|
|
|
width: 460%;
|
|
|
|
min-width: 100%;
|
|
|
|
z-index: 1000;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
padding: 0 17px !important;
|
|
|
|
margin: 2px 0 0 !important;
|
|
|
|
font-size: var(--font-size3);
|
|
|
|
text-align: left;
|
|
|
|
list-style: none;
|
|
|
|
color: var(--dropdown-fg-color);
|
|
|
|
background-color: var(--dropdown-bg-color);
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
background-clip: padding-box;
|
2020-06-25 21:57:23 +00:00
|
|
|
}
|
2020-07-04 10:12:14 +00:00
|
|
|
input[type=checkbox]
|
|
|
|
{
|
2020-07-04 10:15:31 +00:00
|
|
|
-ms-transform: scale(4);
|
|
|
|
-moz-transform: scale(4);
|
|
|
|
-webkit-transform: scale(4);
|
|
|
|
-o-transform: scale(4);
|
|
|
|
transform: scale(4);
|
|
|
|
padding: 20px;
|
2020-07-04 10:14:58 +00:00
|
|
|
margin: 30px 40px;
|
2020-07-04 10:12:14 +00:00
|
|
|
}
|
2019-08-27 10:27:45 +00:00
|
|
|
}
|