You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB
CSS

.content-grid {
display: grid;
grid-template-columns: 25% 75%;
grid-template-rows: 992px;
grid-column-gap: 0px;
grid-row-gap: 0px;
color: white;
}
.content-left {
grid-area: 1 / 1 / 2 / 2;
background-image: url(../img/dev/guildwarsgirl.png);
background-size: contain;
background-repeat: no-repeat;
background-position: right;
max-height: 625px;
}
.content-right {
grid-area: 1 / 2 / 2 / 3;
margin-right: 2em;
/* background-image: url(../img/dev/collage.png);
background-size: cover;
background-repeat: no-repeat;*/
}
.content-right h1, h2, ul, li, b, i, p, img, a {
background-color: transparent;
}
.content-right a:link {
color: #C0AAC0;
}
.content-right a:visited {
color: #C0AAC0;
}
.content-right a:hover {
color: #E1B9E6;
}
.content-right a:active {
color: #C0AAC0;
}
.content-right ul {
list-style-type: none;
}
.content-right li {
padding-left: 5%;
}