personal-site/style.css
2022-07-26 17:10:43 -06:00

69 lines
No EOL
1.1 KiB
CSS

body {
background: #1c1c1c;
font-family: 'Segoe UI', sans-serif;
color: white;
display:flex;
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;
}
#links-contact {
background: rgba(255,255,255, 0.05);
border-radius: 1em;
padding: 1em;
justify-content: center;
width: fit-content;
text-align: center;
}
.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:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }