epicyon/epicyon-options.css

294 lines
7.2 KiB
CSS
Raw Normal View History

2020-07-25 22:12:59 +00:00
@charset "UTF-8";
:root {
2020-11-25 17:05:39 +00:00
--options-bg-color: #282c37;
2020-11-25 17:21:05 +00:00
--options-link-bg-color: transparent;
2020-11-25 16:21:59 +00:00
--options-fg-color: #dddddd;
2020-07-25 22:12:59 +00:00
--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;
2020-08-12 10:28:29 +00:00
--button-small-text: #FFFFFF;
2020-09-03 21:22:35 +00:00
--button-background-hover: #777;
2020-07-25 22:12:59 +00:00
--button-background: #999;
2020-08-12 10:28:29 +00:00
--button-small-background: #999;
2020-07-25 22:12:59 +00:00
--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%;
2020-08-14 20:14:26 +00:00
--focus-color: white;
2020-11-10 20:51:51 +00:00
--petname-width-chars: 16ch;
2020-11-24 18:00:29 +00:00
--main-link-color-hover: #bbb;
2020-07-25 22:12:59 +00:00
}
2020-09-14 14:00:49 +00:00
@font-face {
font-family: 'Bedstead';
font-style: italic;
font-weight: normal;
font-display: block;
src: url('./fonts/bedstead.otf') format('opentype');
}
2020-07-25 22:12:59 +00:00
@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;
2020-11-25 17:05:39 +00:00
background-color: var(--options-bg-color);
2020-11-25 16:21:59 +00:00
color: var(--options-fg-color);
2020-07-25 22:12:59 +00:00
height: 100%;
font-family: Arial, Helvetica, sans-serif;
max-width: 100%;
min-width: 600px;
}
a, u {
2020-11-25 16:21:59 +00:00
color: var(--options-fg-color);
2020-07-25 22:12:59 +00:00
}
a:visited{
color: var(--main-visited-color);
2020-11-25 17:21:05 +00:00
background: var(--options-link-bg-color);
2020-11-24 18:00:29 +00:00
font-weight: normal;
2020-11-24 20:02:15 +00:00
text-decoration: none;
2020-07-25 22:12:59 +00:00
}
a:link {
color: var(--main-link-color);
2020-11-25 17:21:05 +00:00
background: var(--options-link-bg-color);
2020-11-24 18:00:29 +00:00
font-weight: normal;
2020-11-24 20:02:15 +00:00
text-decoration: none;
2020-11-24 18:00:29 +00:00
}
a:link:hover {
color: var(--main-link-color-hover);
}
a:visited:hover {
color: var(--main-link-color-hover);
2020-07-25 22:12:59 +00:00
}
2020-08-14 20:14:26 +00:00
a:focus {
border: 2px solid var(--focus-color);
}
2020-07-25 22:12:59 +00:00
.follow {
height: 100%;
position: relative;
2020-11-25 17:05:39 +00:00
background-color: var(--options-bg-color);
2020-07-25 22:12:59 +00:00
}
.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);
2020-11-25 17:21:05 +00:00
background: var(--options-link-bg-color);
2020-07-25 22:12:59 +00:00
}
.button:hover {
2020-09-03 21:22:35 +00:00
background-color: var(--button-background-hover);
2020-07-25 22:12:59 +00:00
}
.options {
font-size: var(--font-size);
}
.options img {
2020-11-25 17:05:39 +00:00
background-color: var(--options-bg-color);
2020-07-25 22:12:59 +00:00
width: 15%;
}
@media screen and (min-width: 400px) {
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: var(--font-size4);
width: 90%;
background-color: var(--text-entry-background);
2020-11-25 17:21:05 +00:00
color: var(--text-entry-foreground);
}
2020-07-25 22:12:59 +00:00
.followText {
font-size: var(--follow-text-size1);
}
input[type=text] {
width: var(--follow-text-entry-width);
clear: both;
2020-11-16 14:54:25 +00:00
max-width: 30%;
min-width: var(--petname-width-chars);
2020-07-25 22:12:59 +00:00
font-size: 24px;
text-align: center;
color: var(--text-entry-foreground);
background-color: var(--text-entry-background);
2020-07-27 20:44:19 +00:00
font-family: Arial, Helvetica, sans-serif;
2020-07-25 22:12:59 +00:00
}
.button {
border-radius: 4px;
background-color: var(--button-background);
2020-07-27 20:43:10 +00:00
font-family: Arial, Helvetica, sans-serif;
2020-07-25 22:12:59 +00:00
border: none;
color: var(--button-text);
text-align: center;
padding: 10px;
font-size: 24px;
2020-08-12 10:20:57 +00:00
width: 10ch;
2020-07-25 22:12:59 +00:00
max-width: 200px;
min-width: 100px;
cursor: pointer;
margin: 30px;
}
.buttonIcon {
border-radius: 4px;
background-color: var(--button-background);
font-family: Arial, Helvetica, sans-serif;
border: none;
color: var(--button-text);
text-align: center;
2020-09-19 10:08:09 +00:00
padding: 10px 65px;
font-size: 24px;
max-width: 200px;
min-width: 100px;
cursor: pointer;
}
2020-08-12 10:14:20 +00:00
.buttonsmall {
border-radius: 4px;
2020-08-12 10:28:29 +00:00
background-color: var(--button-small-background);
2020-08-12 10:14:20 +00:00
font-family: Arial, Helvetica, sans-serif;
border: none;
2020-08-12 10:28:29 +00:00
color: var(--button-small-text);
2020-08-12 10:14:20 +00:00
text-align: center;
padding: 10px;
font-size: 24px;
2020-08-12 10:20:57 +00:00
width: 7ch;
2020-08-12 10:14:20 +00:00
max-width: 200px;
min-width: 100px;
cursor: pointer;
margin: 30px;
}
2020-07-25 22:12:59 +00:00
input[type=checkbox]
{
2020-07-28 09:04:18 +00:00
-ms-transform: scale(2);
-moz-transform: scale(2);
-webkit-transform: scale(2);
-o-transform: scale(2);
transform: scale(2);
padding: 10px;
margin: 20px 30px;
2020-07-25 22:12:59 +00:00
}
}
@media screen and (max-width: 1000px) {
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: var(--font-size);
width: 90%;
background-color: var(--text-entry-background);
2020-11-25 17:21:05 +00:00
color: var(--text-entry-foreground);
}
2020-07-25 22:12:59 +00:00
.followText {
font-size: var(--follow-text-size2);
}
input[type=text] {
width: var(--follow-text-entry-width);
clear: both;
font-size: 40px;
text-align: center;
2020-11-16 14:54:25 +00:00
max-width: 50%;
min-width: var(--petname-width-chars);
2020-07-25 22:12:59 +00:00
color: var(--text-entry-foreground);
background-color: var(--text-entry-background);
2020-07-27 20:44:19 +00:00
font-family: Arial, Helvetica, sans-serif;
2020-07-25 22:12:59 +00:00
}
.button {
border-radius: 4px;
background-color: var(--button-background);
2020-07-27 20:43:10 +00:00
font-family: Arial, Helvetica, sans-serif;
2020-07-25 22:12:59 +00:00
border: none;
color: var(--button-text);
text-align: center;
padding: 10px;
font-size: 40px;
2020-08-12 10:20:57 +00:00
width: 10ch;
2020-07-25 22:12:59 +00:00
max-width: 200px;
min-width: 100px;
cursor: pointer;
margin: 30px;
}
.buttonIcon {
border-radius: 4px;
background-color: var(--button-background);
font-family: Arial, Helvetica, sans-serif;
border: none;
color: var(--button-text);
text-align: center;
2020-09-19 10:08:09 +00:00
padding: 6px 80px;
font-size: 40px;
max-width: 200px;
min-width: 100px;
cursor: pointer;
}
2020-08-12 10:14:20 +00:00
.buttonsmall {
border-radius: 4px;
2020-08-12 10:28:29 +00:00
background-color: var(--button-small-background);
2020-08-12 10:14:20 +00:00
font-family: Arial, Helvetica, sans-serif;
border: none;
2020-08-12 10:28:29 +00:00
color: var(--button-small-text);
2020-08-12 10:14:20 +00:00
text-align: center;
padding: 10px;
font-size: 40px;
2020-08-12 10:20:57 +00:00
width: 7ch;
2020-08-12 10:14:20 +00:00
max-width: 200px;
min-width: 100px;
cursor: pointer;
margin: 30px;
}
2020-07-25 22:12:59 +00:00
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;
}
}