mirror of https://gitlab.com/bashrc2/epicyon
77 lines
1.3 KiB
CSS
77 lines
1.3 KiB
CSS
body, html {
|
|
height: 100%;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
max-width: 80%;
|
|
min-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.follow {
|
|
background-image: url("follow-background.png");
|
|
height: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
position: relative;
|
|
background-color: white;
|
|
}
|
|
|
|
.followAvatar {
|
|
margin: 15% 0;
|
|
}
|
|
|
|
.followAvatar img {
|
|
border-radius: 10%;
|
|
width: 20%;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.followText {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.button {
|
|
border-radius: 4px;
|
|
background-color: #999;
|
|
border: none;
|
|
color: white;
|
|
text-align: center;
|
|
font-size: 24px;
|
|
padding: 10px;
|
|
width: 20%;
|
|
max-width: 200px;
|
|
min-width: 100px;
|
|
cursor: pointer;
|
|
margin: 30px;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #555;
|
|
color: white;
|
|
}
|
|
|
|
input[type=text] {
|
|
width: 70%;
|
|
clear: both;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
color: var(--text-entry-foreground);
|
|
background-color: var(--text-entry-background);
|
|
}
|
|
|
|
.cwButton {
|
|
border-radius: 4px;
|
|
background-color: #999;
|
|
border: none;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
padding: 2px;
|
|
cursor: pointer;
|
|
margin: 5px;
|
|
}
|
|
|
|
.cwText {
|
|
display: none;
|
|
}
|