personal-site/style.css

60 lines
1 KiB
CSS
Raw Normal View History

body {
background: #1c1c1c;
font-family: 'Segoe UI', sans-serif;
color: white;
display:flex;
justify-content: center;
}
h1, h2, h3, h4, h5 {
margin-top: 0;
margin-bottom: 0;
}
h1 {
font-size:5em;
}
h2 {
font-size: 2.5em;
2022-07-24 19:11:56 +00:00
}
#links-contact {
background: rgba(255,255,255, 0.05);
border-radius: 1em;
padding: 1em;
justify-content: center;
width: fit-content;
text-align: center;
2022-07-24 19:11:56 +00:00
}
.button {
background: rgba(255,255,255, 0.05);
border-radius: 20px;
margin: 0.5em;
display: inline-flex;
justify-content: center;
2022-07-24 19:11:56 +00:00
width: fit-content;
padding: 1em;
2022-07-24 19:11:56 +00:00
}
2022-07-24 19:11:56 +00:00
.button svg, .button svg image {
width: 3em;
height: 3em;
2022-07-24 19:11:56 +00:00
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;
2022-07-24 19:11:56 +00:00
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }