site/home.css

245 lines
5.5 KiB
CSS

/* about me section/first terminal */
#sneexy > section {
#logo {
width: 40rem;
height: auto;
}
h1 #pfp {
width: auto;
height: 6rem;
vertical-align: middle;
}
.selfinfo {
display: grid;
padding-top: 5px;
grid-template-areas:
"pronouns names";
div {
text-align: left;
border-radius: 1em;
padding: .7em 1em;
ul {
padding-left: 1em;
}
li {
padding-bottom: 6px !important;
list-style: none;
}
}
div:first-child {
background-color: color-mix(in srgb, var(--flamingo) 20%, transparent);
}
div:last-child {
background-color: color-mix(in srgb, var(--lavender) 20%, transparent);
margin-left: 1.5em;
}
}
h1 {
margin-bottom: 1px;
}
p {
margin-top: 3px;
}
text-align: center;
}
/* socials and links sections */
.socials-contacts-list {
a {
width: 3rem;
height: 3rem;
display: inline-block;
vertical-align: middle;
align-content: center;
text-align: center;
border-radius: .5rem;
svg {
width: 2rem !important;
height: 2rem !important;
vertical-align: middle;
}
}
}
/* quotes section */
.quotes-container {
display: inline-block;
text-align: center;
margin: .3em;
padding: .2em;
border-radius: 1em;
background-color: var(--crust);
p, a, small {
padding-left: 1mm;
padding-right: 1mm;
margin-top: .8mm;
margin-bottom: .8mm;
}
}
div#quotes.terminal .socials-contacts-list #limineow {
background-color: color-mix(in srgb, var(--red) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--red);
text-decoration: underline;
small {
color: var(--red) !important;
text-decoration: underline;
}
}
}
div#quotes.terminal .socials-contacts-list #bready {
background-color: color-mix(in srgb, var(--peach) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--peach);
text-decoration: underline;
small {
color: var(--peach) !important;
text-decoration: underline;
}
}
}
div#quotes.terminal .socials-contacts-list #mikoto {
background-color: color-mix(in srgb, var(--lavender) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--lavender);
text-decoration: underline;
small {
color: var(--lavender) !important;
text-decoration: underline;
}
}
}
div#quotes.terminal .socials-contacts-list #av70 {
background-color: color-mix(in srgb, var(--mauve) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--mauve);
text-decoration: underline;
small {
color: var(--mauve) !important;
text-decoration: underline;
}
}
}
div#quotes.terminal .socials-contacts-list #vozy {
background-color: color-mix(in srgb, var(--pink) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--pink);
text-decoration: underline;
small {
color: var(--pink) !important;
text-decoration: underline;
}
}
}
div#quotes.terminal .socials-contacts-list #guigui {
background-color: color-mix(in srgb, var(--green) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--green);
text-decoration: underline;
small {
color: var(--green) !important;
text-decoration: underline;
}
}
}
div#quotes.terminal .socials-contacts-list #binbows {
background-color: color-mix(in srgb, var(--crust) 25%, transparent);
p, a, small {
color: var(--text);
text-decoration: none;
}
a:hover {
color: var(--text);
text-decoration: underline;
small {
color: var(--text) !important;
text-decoration: underline;
}
}
}
/* buttons section !! */
.buttons {
font-size: 0px;
img {
margin-right: 5px;
image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
}
/* modify widths and spacing depending on the size of the display */
@media screen and (max-width: 59em) {
#sneexy > section {
#logo {
max-width: 100%;
}
.selfinfo {
grid-template-areas:
"pronouns"
"names";
div {
text-align: center;
margin-left: auto;
margin-right: auto;
ul {
text-align: left !important;
}
}
div:first-child {
margin-bottom: 1em;
}
div:last-child {
margin-left: auto !important;
}
}
}
.socials-contacts-list {
grid-template-columns: repeat(1, 1fr);
}
}