epicyon/epicyon-follow.css

191 lines
3.7 KiB
CSS
Raw Normal View History

2019-08-10 18:28:24 +00:00
@charset "UTF-8";
:root {
--main-bg-color: #282c37;
2019-08-11 13:02:36 +00:00
--main-fg-color: #dddddd;
--main-link-color: #999;
--main-visited-color: #888;
2019-08-10 18:28:24 +00:00
--border-color: #505050;
--font-size-header: 18px;
--font-color-header: #ccc;
2019-09-01 17:40:49 +00:00
--font-size: 40px;
2019-12-12 21:07:05 +00:00
--font-size2: 24px;
--font-size3: 38px;
--font-size4: 22px;
--font-size5: 20px;
2019-08-10 20:33:35 +00:00
--text-entry-foreground: #ccc;
--text-entry-background: #111;
2019-09-11 20:29:47 +00:00
--time-color: #aaa;
--button-text: #FFFFFF;
--button-background: #999;
--button-selected: #666;
2019-08-10 18:28:24 +00:00
}
2019-07-29 09:49:46 +00:00
body, html {
2019-08-10 18:28:24 +00:00
background-color: var(--main-bg-color);
color: var(--main-fg-color);
2019-07-29 09:49:46 +00:00
height: 100%;
font-family: Arial, Helvetica, sans-serif;
2019-09-01 17:40:49 +00:00
max-width: 100%;
2019-07-29 09:49:46 +00:00
min-width: 600px;
2019-08-28 15:45:37 +00:00
margin: 5% auto;
2019-07-29 09:49:46 +00:00
}
2019-08-10 18:28:24 +00:00
a, u {
color: var(--main-fg-color);
}
a:visited{
color: var(--main-visited-color);
font-weight: bold;
}
a:link {
color: var(--main-link-color);
font-weight: bold;
}
2019-07-29 09:49:46 +00:00
.follow {
background-image: url("follow-background.png");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
2019-08-10 18:28:24 +00:00
background-color: var(--main-bg-color);
2019-07-29 09:49:46 +00:00
}
.followAvatar {
2019-12-13 17:52:10 +00:00
margin: 0% 0;
2019-07-29 09:49:46 +00:00
}
2019-07-29 10:02:09 +00:00
.followAvatar img {
border-radius: 10%;
width: 20%;
2019-07-29 10:05:21 +00:00
min-width: 200px;
2019-07-29 10:02:09 +00:00
}
2019-07-29 09:49:46 +00:00
.followText {
2019-08-10 18:28:24 +00:00
font-size: var(--font-size);
2019-07-29 09:49:46 +00:00
}
.button {
border-radius: 4px;
2019-09-11 20:29:47 +00:00
background-color: var(--button-background);
2019-07-29 09:49:46 +00:00
border: none;
2019-09-11 20:29:47 +00:00
color: var(--button-text);
2019-07-29 09:49:46 +00:00
text-align: center;
padding: 10px;
2019-12-12 21:07:05 +00:00
font-size: var(--font-size);
2019-07-29 09:49:46 +00:00
width: 20%;
max-width: 200px;
min-width: 100px;
cursor: pointer;
2019-07-29 10:05:21 +00:00
margin: 30px;
2019-07-29 09:49:46 +00:00
}
.button:hover {
background-color: #555;
color: white;
}
2019-07-30 22:34:04 +00:00
input[type=text] {
2019-09-01 17:40:49 +00:00
width: 90%;
2019-07-30 22:34:04 +00:00
clear: both;
2019-09-01 17:40:49 +00:00
font-size: var(--font-size);
2019-07-30 22:34:04 +00:00
text-align: center;
color: var(--text-entry-foreground);
background-color: var(--text-entry-background);
}
2019-07-31 12:44:08 +00:00
.cwButton {
border-radius: 4px;
background-color: #999;
border: none;
2019-09-11 20:29:47 +00:00
color: var(--button-text);
2019-07-31 12:44:08 +00:00
text-align: center;
2019-09-01 17:40:49 +00:00
font-size: var(--font-size);
2019-07-31 12:44:08 +00:00
padding: 2px;
cursor: pointer;
margin: 5px;
}
.cwText {
2019-08-10 18:28:24 +00:00
display: none;
2019-07-31 12:44:08 +00:00
}
2019-08-28 15:45:37 +00:00
.options {
font-size: var(--font-size);
}
.options img {
width: 20%;
}
2019-09-01 17:40:49 +00:00
@media screen and (min-width: 400px) {
2019-12-13 17:57:15 +00:00
.hashtagswarm {
2019-12-12 21:31:55 +00:00
font-size: 30px;
padding: 30px;
2019-12-12 21:36:28 +00:00
line-height: 60px;
2019-12-12 21:07:05 +00:00
}
.followText {
font-size: 24px;
}
input[type=text] {
width: 90%;
clear: both;
font-size: 24px;
text-align: center;
color: var(--text-entry-foreground);
background-color: var(--text-entry-background);
}
.button {
border-radius: 4px;
background-color: var(--button-background);
border: none;
color: var(--button-text);
text-align: center;
padding: 10px;
font-size: 24px;
width: 20%;
max-width: 200px;
min-width: 100px;
cursor: pointer;
margin: 30px;
}
2019-09-01 17:40:49 +00:00
}
@media screen and (max-width: 1000px) {
2019-12-13 17:57:15 +00:00
.hashtagswarm {
2019-12-12 21:31:55 +00:00
font-size: 40px;
padding: 40px;
2019-12-12 21:36:28 +00:00
line-height: 70px;
2019-12-12 21:07:05 +00:00
}
.followText {
font-size: 40px;
}
input[type=text] {
width: 90%;
clear: both;
font-size: 40px;
text-align: center;
color: var(--text-entry-foreground);
background-color: var(--text-entry-background);
}
.button {
border-radius: 4px;
background-color: var(--button-background);
border: none;
color: var(--button-text);
text-align: center;
padding: 10px;
font-size: 40px;
width: 20%;
max-width: 200px;
min-width: 100px;
cursor: pointer;
margin: 30px;
}
2019-09-01 17:40:49 +00:00
}