site/index.css

61 lines
1 KiB
CSS
Raw Normal View History

2024-10-19 13:44:20 -05:00
/* about me section/first terminal */
#site > section {
#logo {
width: 40rem;
height: auto;
line-break: strict;
margin-bottom: .5rem;
text-align: center;
2024-10-19 13:44:20 -05:00
}
h1 {
margin-top: -1rem;
margin-bottom: 1px;
}
p {
margin-top: 3px;
}
ul {
text-align: left;
li a {
text-decoration: none !important;
}
li a:hover {
text-decoration: underline !important;
}
}
2024-10-19 13:44:20 -05:00
text-align: center;
}
/* buttons section !! */
.buttons {
text-align: center;
2024-10-19 13:44:20 -05:00
font-size: 0px;
img {
margin-right: 5px;
image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;
transition: transform .2s;
}
img:hover {
transform: scale(2);
2024-10-19 13:44:20 -05:00
}
}
/* modify widths and spacing depending on the size of the display */
@media screen and (max-width: 59em) {
#site > section {
2024-10-19 13:44:20 -05:00
#logo {
max-width: 100%;
}
}
}