2019-08-10 18:22:28 +00:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--main-bg-color: #282c37;
|
|
|
|
--main-bg-color-darker: #232c37;
|
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;
|
|
|
|
--font-size-header: 18px;
|
|
|
|
--font-color-header: #ccc;
|
|
|
|
--font-size: 22px;
|
2019-08-11 13:02:36 +00:00
|
|
|
--text-entry-foreground: #ccc;
|
|
|
|
--text-entry-background: #111;
|
2019-08-10 18:22:28 +00:00
|
|
|
}
|
|
|
|
|
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%;
|
|
|
|
min-width: 600px;
|
|
|
|
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);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: var(--main-link-color);
|
|
|
|
font-weight: bold;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 12:44:08 +00:00
|
|
|
.cwButton {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #999;
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cwText {
|
2019-08-07 20:13:44 +00:00
|
|
|
display: none;
|
2019-07-31 12:44:08 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 20:37:19 +00:00
|
|
|
.pageicon {
|
|
|
|
width: 5%;
|
|
|
|
}
|
|
|
|
|
2019-07-24 12:02:28 +00:00
|
|
|
.timeline-banner {
|
|
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("banner.png");
|
|
|
|
height: 10%;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.hero-image {
|
2019-07-22 20:01:46 +00:00
|
|
|
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("image.png");
|
|
|
|
height: 50%;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: relative;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero-text {
|
2019-07-22 20:01:46 +00:00
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2019-08-10 18:22:28 +00:00
|
|
|
color: var(--font-color-header);
|
|
|
|
font-size: var(--font-size-header);
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 19:22:56 +00:00
|
|
|
.new-post-text {
|
|
|
|
font-size: 24px;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
2019-08-11 11:25:27 +00:00
|
|
|
.new-post-subtext {
|
|
|
|
font-size: 18px;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.hero-text img {
|
2019-07-22 20:01:46 +00:00
|
|
|
border-radius: 10%;
|
|
|
|
width: 50%;
|
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;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero-text button:hover {
|
2019-07-22 20:01:46 +00:00
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2019-07-22 20:01:46 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #999;
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
2019-08-12 13:22:17 +00:00
|
|
|
width: 15%;
|
2019-07-22 20:01:46 +00:00
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 21:36:54 +00:00
|
|
|
.buttonunfollow {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #999;
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2019-08-02 10:37:03 +00:00
|
|
|
.buttonhighlighted {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: green;
|
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 100px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
.followApprove {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: darkgreen;
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 15%;
|
|
|
|
max-width: 150px;
|
|
|
|
min-width: 100px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 15px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followDeny {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: darkred;
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 15%;
|
|
|
|
max-width: 150px;
|
|
|
|
min-width: 100px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 15px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.followRequestHandle {
|
|
|
|
padding: 0px 20px;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.button span {
|
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 {
|
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 {
|
2019-07-22 20:01:46 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #666;
|
|
|
|
border: none;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
2019-07-29 18:48:23 +00:00
|
|
|
min-width: 140px;
|
2019-07-22 20:01:46 +00:00
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
2019-08-02 10:37:03 +00:00
|
|
|
.buttonselectedhighlighted {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: darkgreen;
|
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 20%;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 140px;
|
|
|
|
transition: all 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.buttonselected span {
|
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 {
|
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 {
|
2019-08-10 18:22:28 +00:00
|
|
|
border: 2px solid var(--border-color);
|
|
|
|
background-color: var(--main-bg-color);
|
2019-07-22 17:42:39 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:33:18 +00:00
|
|
|
.container p.administeredby {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2019-07-22 17:42:39 +00:00
|
|
|
.container::after {
|
|
|
|
content: "";
|
|
|
|
clear: both;
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container img {
|
|
|
|
float: left;
|
|
|
|
max-width: 60px;
|
2019-07-29 18:48:23 +00:00
|
|
|
width: 10%;
|
2019-07-30 22:34:04 +00:00
|
|
|
padding: 0px 7px;
|
2019-07-22 17:42:39 +00:00
|
|
|
margin-right: 20px;
|
|
|
|
border-radius: 10%;
|
|
|
|
}
|
|
|
|
|
2019-08-19 19:10:55 +00:00
|
|
|
.searchEmoji {
|
2019-08-19 19:24:14 +00:00
|
|
|
-ms-transform: translateY(30%);
|
|
|
|
transform: translateY(30%);
|
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;
|
|
|
|
padding-left: 0px;
|
|
|
|
border-radius: 0px;
|
2019-08-09 16:18:00 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 12:47:42 +00:00
|
|
|
.containericons {
|
|
|
|
border: 0px solid #dedede;
|
|
|
|
background-color: #f1f1f1;
|
2019-07-30 22:34:04 +00:00
|
|
|
border-radius: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px 0;
|
2019-07-30 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.containericons img {
|
|
|
|
float: right;
|
|
|
|
max-width: 35px;
|
|
|
|
width: 5%;
|
2019-07-30 22:34:04 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
padding-left: 0px 0px;
|
|
|
|
border-radius: 0%;
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:59:38 +00:00
|
|
|
.replyingto {
|
|
|
|
color: var(--main-fg-color);
|
|
|
|
}
|
|
|
|
|
2019-07-30 22:34:04 +00:00
|
|
|
.darker {
|
2019-08-10 18:22:28 +00:00
|
|
|
background-color: var(--main-bg-color-darker);
|
2019-07-30 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
max-width: 100%;
|
|
|
|
margin-left: 25%;
|
|
|
|
width: 50%;
|
|
|
|
border-radius: 10%;
|
|
|
|
}
|
|
|
|
.container img.right {
|
|
|
|
float: right;
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-right:0;
|
|
|
|
}
|
2019-07-30 12:47:42 +00:00
|
|
|
.containericons img.right {
|
|
|
|
float: right;
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-right:0;
|
|
|
|
}
|
2019-07-22 17:42:39 +00:00
|
|
|
|
|
|
|
.time-right {
|
|
|
|
float: right;
|
|
|
|
color: #aaa;
|
2019-07-30 12:47:42 +00:00
|
|
|
margin:10px 30px;
|
2019-07-22 17:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.time-left {
|
|
|
|
float: left;
|
|
|
|
color: #999;
|
2019-07-30 12:47:42 +00:00
|
|
|
margin:10px 0px;
|
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;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #666;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#myProgress {
|
|
|
|
float: left;
|
|
|
|
width: 70%;
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#myBar {
|
|
|
|
float: left;
|
|
|
|
width: 10%;
|
|
|
|
height: 30px;
|
|
|
|
background-color: #999;
|
|
|
|
}
|
2019-07-25 21:39:09 +00:00
|
|
|
|
|
|
|
input[type=text], select, textarea {
|
|
|
|
width: 100%;
|
|
|
|
padding: 12px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
resize: vertical;
|
|
|
|
font-size: 18px;
|
2019-08-10 20:33:35 +00:00
|
|
|
background-color: var(--main-bg-color-darker);
|
|
|
|
color: var(--main-fg-color);
|
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;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
resize: vertical;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.labels {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2019-07-25 21:39:09 +00:00
|
|
|
input[type=submit] {
|
2019-07-26 10:30:13 +00:00
|
|
|
background-color: #555;
|
2019-07-25 21:39:09 +00:00
|
|
|
color: white;
|
2019-07-28 12:04:32 +00:00
|
|
|
float: right;
|
2019-08-13 10:04:18 +00:00
|
|
|
margin: 10px 10px;
|
2019-07-28 12:04:32 +00:00
|
|
|
padding: 12px 40px;
|
2019-07-25 21:39:09 +00:00
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
2019-07-26 10:30:13 +00:00
|
|
|
font-size: 18px;
|
2019-07-25 21:39:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 15:16:14 +00:00
|
|
|
.cancelbtn {
|
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
|
|
|
float: right;
|
2019-08-13 10:48:16 +00:00
|
|
|
margin: 10px 10px;
|
2019-07-28 15:16:14 +00:00
|
|
|
padding: 12px 40px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2019-07-28 15:52:59 +00:00
|
|
|
.loginButton {
|
|
|
|
background-color: #2965;
|
|
|
|
color: #000;
|
|
|
|
float: center;
|
|
|
|
margin: 0px 10px;
|
|
|
|
padding: 12px 40px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 24px;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2019-07-26 14:19:37 +00:00
|
|
|
input[type=file] {
|
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
|
|
|
padding: 12px 20px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2019-07-25 21:39:09 +00:00
|
|
|
input[type=submit]:hover {
|
2019-07-26 10:30:13 +00:00
|
|
|
background-color: #555;
|
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
|
|
|
|
|
|
|
.dropbtn {
|
2019-07-26 12:26:41 +00:00
|
|
|
opacity: 1.0;
|
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-07-28 19:54:05 +00:00
|
|
|
.dropdown-timeline {
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-timeline img {
|
|
|
|
opacity: 1.0;
|
|
|
|
width: 90%;
|
|
|
|
height: 90%;
|
|
|
|
padding: 0px 0px;
|
|
|
|
-ms-transform: translateY(-10%);
|
|
|
|
transform: translateY(-10%);
|
|
|
|
}
|
|
|
|
|
2019-07-26 12:26:41 +00:00
|
|
|
.scope-desc {
|
|
|
|
font-size: 18px;
|
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-10 20:33:35 +00:00
|
|
|
background-color: var(--main-bg-color);
|
2019-07-26 12:26:41 +00:00
|
|
|
min-width: 300px;
|
|
|
|
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 {
|
2019-08-10 20:33:35 +00:00
|
|
|
color: var(--main-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
|
|
|
}
|
|
|
|
|
2019-07-28 20:14:45 +00:00
|
|
|
.dropdown-timeline-content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2019-08-10 20:39:07 +00:00
|
|
|
background-color: var(--main-bg-color);
|
2019-07-28 20:14:45 +00:00
|
|
|
min-width: 100px;
|
|
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Links inside the dropdown */
|
|
|
|
.dropdown-timeline-content a {
|
2019-08-10 20:39:07 +00:00
|
|
|
color: var(--main-fg-color);
|
2019-07-28 20:14:45 +00:00
|
|
|
padding: 12px 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-07-26 10:30:13 +00:00
|
|
|
/* Change color of dropdown links on hover */
|
2019-08-10 20:33:35 +00:00
|
|
|
.dropdown-content a:hover {background-color: #111;}
|
2019-07-26 10:30:13 +00:00
|
|
|
|
|
|
|
/* Show the dropdown menu on hover */
|
|
|
|
.dropdown:hover .dropdown-content {display: block;}
|
|
|
|
|
|
|
|
/* Change the background color of the dropdown button when the dropdown content is shown */
|
2019-08-10 20:41:54 +00:00
|
|
|
.dropdown:hover .dropbtn {background-color: var(--main-fg-color);}
|
2019-07-28 19:54:05 +00:00
|
|
|
|
2019-07-28 20:14:45 +00:00
|
|
|
.dropdown-timeline-content a:hover {background-color: #ddd;}
|
|
|
|
|
2019-07-28 19:54:05 +00:00
|
|
|
/* Show the dropdown menu on hover */
|
2019-07-28 20:14:45 +00:00
|
|
|
.dropdown-timeline:hover .dropdown-timeline-content {display: block;}
|
2019-07-28 19:54:05 +00:00
|
|
|
|
|
|
|
/* Change the background color of the dropdown button when the dropdown content is shown */
|
2019-08-10 20:41:54 +00:00
|
|
|
.dropdown-timeline:hover .dropbtn {background-color: var(--main-fg-color);}
|
2019-08-07 11:42:06 +00:00
|
|
|
|
|
|
|
input[type=checkbox]
|
|
|
|
{
|
2019-08-07 20:13:44 +00:00
|
|
|
-ms-transform: scale(2);
|
|
|
|
-moz-transform: scale(2);
|
|
|
|
-webkit-transform: scale(2);
|
|
|
|
-o-transform: scale(2);
|
|
|
|
transform: scale(2);
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px 5px;
|
2019-08-07 11:42:06 +00:00
|
|
|
}
|
2019-08-09 08:46:38 +00:00
|
|
|
|
|
|
|
.slider {
|
|
|
|
-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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider::-webkit-slider-thumb {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2019-08-10 20:41:54 +00:00
|
|
|
background: var(--main-bg-color);
|
2019-08-09 08:46:38 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider::-moz-range-thumb {
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2019-08-10 20:41:54 +00:00
|
|
|
background: var(--main-bg-color);
|
2019-08-09 08:46:38 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|