personal-site/style.css
ChaseWelsh 8b2f9653a8 B
1
A
Dyufy
D
C
C
D
A
B
B
B
B
B
B
B
A
A
A
B
B
B
B
B
A
B
A
B
A
A
B
B
dyhf
A
2022-08-08 16:50:56 -06:00

90 lines
No EOL
1.4 KiB
CSS

body {
background: #1c1c1c;
font-family: 'Segoe UI', sans-serif;
color: white;
display:flex;
flex-direction: column;
justify-content: center;
}
canvas#background {
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
z-index: 0;
}
h1, h2, h3, h4, h5 {
margin-top: 0;
margin-bottom: 0;
}
h1 {
font-size:5em;
}
h2 {
font-size: 2.5em;
}
p {
font-size: 1em;
text-align: left;
}
#NameBanner {
margin-left:auto;
margin-right:auto;
}
.panel {
margin-left:auto;
margin-right:auto;
background: rgba(255,255,255, 0.05);
border-radius: 1em;
padding: 1em;
justify-content: center;
width: fit-content;
text-align: center;
z-index: 1;
backdrop-filter: blur(5px);
margin-top: 1em;
margin-bottom: 1em;
}
.button {
background: rgba(255,255,255, 0.05);
border-radius: 20px;
margin: 0.5em;
display: inline-flex;
justify-content: center;
width: fit-content;
padding: 1em;
}
.button svg, .button svg image {
width: 3em;
height: 3em;
fill: white;
margin-left: auto;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
}
a.button:hover svg, a.button:hover svg image {
fill: darkcyan;
}
a.button:hover {
background: rgba(255,255,255, 0.1);
}
p a {
color: aliceblue;
}
.button a {
text-decoration: none;
}