2024-10-19 13:44:20 -05:00
|
|
|
/* about me section/first terminal */
|
|
|
|
|
|
|
|
|
|
#site > section {
|
|
|
|
|
#logo {
|
|
|
|
|
width: 40rem;
|
|
|
|
|
height: auto;
|
2024-10-28 22:55:31 -05:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-28 22:55:31 -05:00
|
|
|
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 {
|
2024-12-09 01:32:59 -06:00
|
|
|
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;
|
2024-12-09 01:32:59 -06:00
|
|
|
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) {
|
2024-10-28 22:55:31 -05:00
|
|
|
#site > section {
|
2024-10-19 13:44:20 -05:00
|
|
|
#logo {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|