epicyon/epicyon-follow.css

109 lines
1.9 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;
--font-size: 22px;
2019-08-10 20:33:35 +00:00
--text-entry-foreground: #ccc;
--text-entry-background: #111;
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;
max-width: 80%;
min-width: 600px;
margin: 0 auto;
}
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 {
margin: 15% 0;
}
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;
background-color: #999;
border: none;
color: white;
text-align: center;
2019-08-10 18:28:24 +00:00
font-size: var(--font-size);
2019-07-29 09:49:46 +00:00
padding: 10px;
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] {
width: 70%;
clear: both;
font-size: 24px;
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;
color: #FFFFFF;
text-align: center;
font-size: 18px;
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
}