claygarth.github.io/style.css
2021-12-29 21:56:12 -05:00

149 lines
2.6 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
--font: 'Roboto Mono', monospace;
--background: black;
--color: #A9A9A9;
}
body{
background-color: var(--background);
color: var(--color);
font-family: var(--font);
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
display: flex;
min-height: 100vh;
min-width: 100vw;
flex-direction: column;
}
.container {
flex: 1 auto;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.content{
display: flex;
flex-direction: column;
flex: 1 auto;
align-items: center;
justify-content: center;
margin: 0;
}
footer{
text-align: center;
font-size: 0.75rem;
font-weight: 400;
padding-bottom: 20px;
}
#userPhoto{
width: 96px;
height: 96px;
display: block;
margin: 35px auto 20px;
border-radius: 50%;
border: solid var(--color) 2px;
}
#userName{
width: 100%;
font-size: 1.5rem;
font-weight: 400;
text-align: center;
text-decoration: none;
line-height: 1.25;
display: block;
color: var(--color);
}
#links{
max-width: 90%;
width: auto;
display: block;
margin: 27px auto;
}
.link{
display: block;
margin-bottom: 20px;
padding: 17px;
font-size: 1rem;
font-weight: 500;
border-radius: 5px;
border: dashed var(--color) 2px;
text-align: center;
text-decoration: none;
color: var(--color);
word-wrap: break-word;
}
/* unvisited link */
a:link {
color: var(--color);
}
/* visited link */
a:visited {
color: var(--color);
}
/* mouse over link */
a:hover {
color: darkgrey;
position: relative;
}
.litecoin:hover:after {
content: url(https://gaming.claytonia.net/assets/images/litecoinQR.png); /* no need for qoutes */
display: block;
position: absolute;
left: 123px; /* change this value to one that suits you */
top: 56px; /* change this value to one that suits you */
}
.bitcoin:hover:after {
content: url(https://gaming.claytonia.net/assets/images/bitcoinQR.png); /* no need for qoutes */
display: block;
position: absolute;
left: 123px; /* change this value to one that suits you */
top: 56px; /* change this value to one that suits you */
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #202124;
--color: white;
}
}