mirror of https://gitlab.com/bashrc2/epicyon
199 lines
4.4 KiB
CSS
199 lines
4.4 KiB
CSS
@charset "UTF-8";
|
|
|
|
:root {
|
|
--main-bg-color: #282c37;
|
|
--link-bg-color: #282c37;
|
|
--main-fg-color: #dddddd;
|
|
--main-link-color: #999;
|
|
--main-visited-color: #888;
|
|
--border-color: #505050;
|
|
--font-size-header: 18px;
|
|
--font-color-header: #ccc;
|
|
--font-size: 40px;
|
|
--font-size2: 24px;
|
|
--font-size3: 38px;
|
|
--font-size4: 22px;
|
|
--font-size5: 20px;
|
|
--text-entry-foreground: #ccc;
|
|
--text-entry-background: #111;
|
|
--time-color: #aaa;
|
|
--button-text: #FFFFFF;
|
|
--button-background: #999;
|
|
--button-selected: #666;
|
|
--hashtag-margin: 2%;
|
|
--hashtag-vertical-spacing1: 50px;
|
|
--hashtag-vertical-spacing2: 100px;
|
|
--hashtag-vertical-spacing3: 100px;
|
|
--hashtag-vertical-spacing4: 150px;
|
|
--hashtag-size1: 30px;
|
|
--hashtag-size2: 40px;
|
|
--follow-text-size1: 24px;
|
|
--follow-text-size2: 40px;
|
|
--follow-text-entry-width: 90%;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Bedstead';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-display: block;
|
|
src: url('./fonts/bedstead.otf') format('opentype');
|
|
}
|
|
|
|
body, html {
|
|
background-image: url("options-background.jpg");
|
|
background-size: cover;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-color: var(--main-bg-color);
|
|
color: var(--main-fg-color);
|
|
|
|
height: 100%;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
max-width: 100%;
|
|
min-width: 600px;
|
|
}
|
|
|
|
a, u {
|
|
color: var(--main-fg-color);
|
|
}
|
|
|
|
a:visited{
|
|
color: var(--main-visited-color);
|
|
background: var(--link-bg-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:link {
|
|
color: var(--main-link-color);
|
|
background: var(--link-bg-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.follow {
|
|
height: 100%;
|
|
position: relative;
|
|
background-color: var(--main-bg-color);
|
|
}
|
|
|
|
.followAvatar {
|
|
margin: 0% 0;
|
|
}
|
|
|
|
.followAvatar img {
|
|
border-radius: 10%;
|
|
width: 20%;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.imText {
|
|
font-size: var(--font-size4);
|
|
color: var(--main-link-color);
|
|
}
|
|
|
|
.pgp {
|
|
font-size: var(--font-size5);
|
|
color: var(--main-link-color);
|
|
background: var(--link-bg-color);
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #555;
|
|
color: white;
|
|
}
|
|
|
|
.options {
|
|
font-size: var(--font-size);
|
|
}
|
|
|
|
.options img {
|
|
width: 15%;
|
|
}
|
|
|
|
textarea {
|
|
font-size: var(--font-size4);
|
|
width: 90%;
|
|
}
|
|
|
|
@media screen and (min-width: 400px) {
|
|
.followText {
|
|
font-size: var(--follow-text-size1);
|
|
}
|
|
input[type=text] {
|
|
width: var(--follow-text-entry-width);
|
|
clear: both;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
color: var(--text-entry-foreground);
|
|
background-color: var(--text-entry-background);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
.button {
|
|
border-radius: 4px;
|
|
background-color: var(--button-background);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
border: none;
|
|
color: var(--button-text);
|
|
text-align: center;
|
|
padding: 10px;
|
|
font-size: 24px;
|
|
width: 20%;
|
|
max-width: 200px;
|
|
min-width: 100px;
|
|
cursor: pointer;
|
|
margin: 30px;
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
.followText {
|
|
font-size: var(--follow-text-size2);
|
|
}
|
|
input[type=text] {
|
|
width: var(--follow-text-entry-width);
|
|
clear: both;
|
|
font-size: 40px;
|
|
text-align: center;
|
|
color: var(--text-entry-foreground);
|
|
background-color: var(--text-entry-background);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
.button {
|
|
border-radius: 4px;
|
|
background-color: var(--button-background);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
border: none;
|
|
color: var(--button-text);
|
|
text-align: center;
|
|
padding: 10px;
|
|
font-size: 40px;
|
|
width: 20%;
|
|
max-width: 200px;
|
|
min-width: 100px;
|
|
cursor: pointer;
|
|
margin: 30px;
|
|
}
|
|
input[type=checkbox]
|
|
{
|
|
-ms-transform: scale(4);
|
|
-moz-transform: scale(4);
|
|
-webkit-transform: scale(4);
|
|
-o-transform: scale(4);
|
|
transform: scale(4);
|
|
padding: 20px;
|
|
margin: 30px 40px;
|
|
}
|
|
}
|